diff --git a/.github/workflows/terraform b/.github/workflows/terraform new file mode 100644 index 000000000..e69de29bb diff --git a/GITHUB_ENV.yaml b/GITHUB_ENV.yaml new file mode 100644 index 000000000..584c0eee3 --- /dev/null +++ b/GITHUB_ENV.yaml @@ -0,0 +1,10 @@ +steps: + - name: Set the value + id: step_one + run: | + echo "GITHUB_TOKEN=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" >> "$GITHUB_ENV" + - name: Use the value + id: step_two + run: | + printf '%s\n' "$GITHUB_TOKEN" # This will output 'yellow' + diff --git a/main.tf b/main.tf index e1d1b8045..31bf8c946 100644 --- a/main.tf +++ b/main.tf @@ -12,10 +12,10 @@ terraform { required_version = "~> 1.0" backend "remote" { - organization = "REPLACE_ME" + organization = "ACG-Labs-Demo" workspaces { - name = "REPLACE_ME" + name = "github-actions" } } }