Skip to content

Commit

Permalink
fix: Stackscript links edited to hosted on github
Browse files Browse the repository at this point in the history
  • Loading branch information
ciro-mota committed Nov 24, 2023
1 parent 4baa141 commit d61c465
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "linode_stackscript" "deb" {
is_public = false
script = <<EOF
#!/bin/bash
bash <(curl -sk https://termbin.com/kal3)
bash <(curl -sk https://raw.githubusercontent.com/ciro-mota/terra-linode/main/scripts/nginx-deb.sh)
EOF
images = ["linode/ubuntu23.10", "linode/ubuntu23.04", "linode/ubuntu22.10",
"linode/ubuntu22.04", "linode/ubuntu20.04", "linode/ubuntu18.04",
Expand All @@ -24,7 +24,7 @@ resource "linode_stackscript" "apk" {
is_public = false
script = <<EOF
#!/bin/sh
sh <(curl -sk https://termbin.com/lrsm)
sh <(curl -sk https://raw.githubusercontent.com/ciro-mota/terra-linode/main/scripts/nginx-apk.sh)
EOF
images = ["linode/alpine3.14", "linode/alpine3.15", "linode/alpine3.16",
"linode/alpine3.17", "linode/alpine3.18"]
Expand All @@ -35,13 +35,13 @@ resource "linode_stackscript" "rhel" {
is_public = false
script = <<EOF
#!/bin/bash
bash <(curl -sk https://termbin.com/g1ca)
bash <(curl -sk https://raw.githubusercontent.com/ciro-mota/terra-linode/main/scripts/nginx-rhel.sh)
EOF
images = ["linode/almalinux8", "linode/almalinux9", "linode/fedora37",
"linode/fedora38", "linode/rocky8", "linode/rocky9"]
}

## Uncomment if you are going to use remote state or sending files.
# Uncomment one of the two resources below if you are going to use remote state or sending files.
# resource "null_resource" "object" {

# provisioner "local-exec" {
Expand Down

0 comments on commit d61c465

Please sign in to comment.