├── .devcontainer ├── devcontainer.json └── post-create-command.sh ├── .eslintrc.yml ├── .github └── workflows │ ├── backstage-catalog-helper.yml │ ├── ci.yaml │ ├── export_github_data.yml │ ├── labels.yml │ ├── ossf-scorecard.yml │ ├── pr-test.yaml │ └── s3-backup.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── action.yaml ├── catalog-info.yaml ├── dist ├── index.js ├── index.js.map ├── licenses.txt ├── secrets.yml └── sourcemap-register.js ├── package.json ├── pull_request_template.md ├── renovate.json ├── src ├── action.js ├── command.js ├── github.js ├── index.js ├── opa.js └── secrets.yml └── test ├── action.test.js ├── changes-open-tofu ├── changes.tf ├── plan.tfplan └── tfplan.json ├── changes ├── changes.tf ├── plan.tfplan └── tfplan.json ├── command.test.js ├── conftest-deny-open-tofu └── conftest-deny.tf ├── conftest-deny └── conftest-deny.tf ├── format-error-open-tofu └── format-error.tf ├── format-error └── format-error.tf ├── github.test.js ├── import-open-tofu ├── import.json ├── import.tf └── tf.plan ├── import ├── import.json ├── import.tf └── tf.plan ├── init-fail-open-tofu └── init-fail.tf ├── init-fail └── init-fail.tf ├── init-run-all-open-tofu ├── provider.tf ├── terragrunt.hcl └── terragrunt.tf ├── init-run-all ├── provider.tf ├── terragrunt.hcl └── terragrunt.tf ├── invalid-open-tofu └── invalid.tf ├── invalid └── invalid.tf ├── moved-resources-open-tofu └── moved.json ├── moved-resources └── moved.json ├── multiple_outputs-open-tofu ├── 2_create.json └── all.json ├── multiple_outputs ├── 2_create.json └── all.json ├── no-changes-open-tofu ├── no-changes.tf └── tfplan.json ├── no-changes ├── no-changes.tf └── tfplan.json ├── opa.test.js ├── plan-options-open-tofu ├── plan_options.tf └── plan_options.tfvars ├── plan-options ├── plan_options.tf └── plan_options.tfvars ├── secret-config ├── config.yml └── secret-config.tf ├── secret-scan └── secret-scan.tf ├── skip-conftest-open-tofu ├── skip-conftest.tf └── tfplan.json ├── skip-conftest ├── skip-conftest.tf └── tfplan.json ├── skip-fmt-open-tofu ├── skip-fmt.tf └── tfplan.json ├── skip-fmt ├── skip-fmt.tf └── tfplan.json ├── skip-plan-open-tofu ├── skip-plan.tf └── tfplan.json ├── skip-plan ├── skip-plan.tf └── tfplan.json ├── terragrunt-open-tofu ├── provider.tf ├── terragrunt.hcl └── terragrunt.tf ├── terragrunt ├── provider.tf ├── terragrunt.hcl └── terragrunt.tf ├── truncate-plan-open-tofu └── truncate-plan.tf ├── truncate-plan └── truncate-plan.tf ├── validate-fail-open-tofu └── validate-fail.tf └── validate-fail └── validate-fail.tf /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post-create-command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.devcontainer/post-create-command.sh -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/backstage-catalog-helper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.github/workflows/backstage-catalog-helper.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/export_github_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.github/workflows/export_github_data.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/pr-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.github/workflows/pr-test.yaml -------------------------------------------------------------------------------- /.github/workflows/s3-backup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.github/workflows/s3-backup.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run pre-commit 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/action.yaml -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/dist/secrets.yml -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/package.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/renovate.json -------------------------------------------------------------------------------- /src/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/src/action.js -------------------------------------------------------------------------------- /src/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/src/command.js -------------------------------------------------------------------------------- /src/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/src/github.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/src/index.js -------------------------------------------------------------------------------- /src/opa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/src/opa.js -------------------------------------------------------------------------------- /src/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/src/secrets.yml -------------------------------------------------------------------------------- /test/action.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/action.test.js -------------------------------------------------------------------------------- /test/changes-open-tofu/changes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/changes-open-tofu/changes.tf -------------------------------------------------------------------------------- /test/changes-open-tofu/plan.tfplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/changes-open-tofu/plan.tfplan -------------------------------------------------------------------------------- /test/changes-open-tofu/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/changes-open-tofu/tfplan.json -------------------------------------------------------------------------------- /test/changes/changes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/changes/changes.tf -------------------------------------------------------------------------------- /test/changes/plan.tfplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/changes/plan.tfplan -------------------------------------------------------------------------------- /test/changes/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/changes/tfplan.json -------------------------------------------------------------------------------- /test/command.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/command.test.js -------------------------------------------------------------------------------- /test/conftest-deny-open-tofu/conftest-deny.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/conftest-deny-open-tofu/conftest-deny.tf -------------------------------------------------------------------------------- /test/conftest-deny/conftest-deny.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/conftest-deny/conftest-deny.tf -------------------------------------------------------------------------------- /test/format-error-open-tofu/format-error.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/format-error-open-tofu/format-error.tf -------------------------------------------------------------------------------- /test/format-error/format-error.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/format-error/format-error.tf -------------------------------------------------------------------------------- /test/github.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/github.test.js -------------------------------------------------------------------------------- /test/import-open-tofu/import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/import-open-tofu/import.json -------------------------------------------------------------------------------- /test/import-open-tofu/import.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/import-open-tofu/import.tf -------------------------------------------------------------------------------- /test/import-open-tofu/tf.plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/import-open-tofu/tf.plan -------------------------------------------------------------------------------- /test/import/import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/import/import.json -------------------------------------------------------------------------------- /test/import/import.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/import/import.tf -------------------------------------------------------------------------------- /test/import/tf.plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/import/tf.plan -------------------------------------------------------------------------------- /test/init-fail-open-tofu/init-fail.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/init-fail-open-tofu/init-fail.tf -------------------------------------------------------------------------------- /test/init-fail/init-fail.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/init-fail/init-fail.tf -------------------------------------------------------------------------------- /test/init-run-all-open-tofu/provider.tf: -------------------------------------------------------------------------------- 1 | # Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa 2 | provider "aws" { 3 | region = "us-canada-1" 4 | } 5 | -------------------------------------------------------------------------------- /test/init-run-all-open-tofu/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/init-run-all-open-tofu/terragrunt.hcl -------------------------------------------------------------------------------- /test/init-run-all-open-tofu/terragrunt.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/init-run-all-open-tofu/terragrunt.tf -------------------------------------------------------------------------------- /test/init-run-all/provider.tf: -------------------------------------------------------------------------------- 1 | # Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa 2 | provider "aws" { 3 | region = "us-canada-1" 4 | } 5 | -------------------------------------------------------------------------------- /test/init-run-all/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/init-run-all/terragrunt.hcl -------------------------------------------------------------------------------- /test/init-run-all/terragrunt.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/init-run-all/terragrunt.tf -------------------------------------------------------------------------------- /test/invalid-open-tofu/invalid.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/invalid-open-tofu/invalid.tf -------------------------------------------------------------------------------- /test/invalid/invalid.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/invalid/invalid.tf -------------------------------------------------------------------------------- /test/moved-resources-open-tofu/moved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/moved-resources-open-tofu/moved.json -------------------------------------------------------------------------------- /test/moved-resources/moved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/moved-resources/moved.json -------------------------------------------------------------------------------- /test/multiple_outputs-open-tofu/2_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/multiple_outputs-open-tofu/2_create.json -------------------------------------------------------------------------------- /test/multiple_outputs-open-tofu/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/multiple_outputs-open-tofu/all.json -------------------------------------------------------------------------------- /test/multiple_outputs/2_create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/multiple_outputs/2_create.json -------------------------------------------------------------------------------- /test/multiple_outputs/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/multiple_outputs/all.json -------------------------------------------------------------------------------- /test/no-changes-open-tofu/no-changes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/no-changes-open-tofu/no-changes.tf -------------------------------------------------------------------------------- /test/no-changes-open-tofu/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/no-changes-open-tofu/tfplan.json -------------------------------------------------------------------------------- /test/no-changes/no-changes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/no-changes/no-changes.tf -------------------------------------------------------------------------------- /test/no-changes/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/no-changes/tfplan.json -------------------------------------------------------------------------------- /test/opa.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/opa.test.js -------------------------------------------------------------------------------- /test/plan-options-open-tofu/plan_options.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/plan-options-open-tofu/plan_options.tf -------------------------------------------------------------------------------- /test/plan-options-open-tofu/plan_options.tfvars: -------------------------------------------------------------------------------- 1 | byte_length = 8 -------------------------------------------------------------------------------- /test/plan-options/plan_options.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/plan-options/plan_options.tf -------------------------------------------------------------------------------- /test/plan-options/plan_options.tfvars: -------------------------------------------------------------------------------- 1 | byte_length = 8 -------------------------------------------------------------------------------- /test/secret-config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/secret-config/config.yml -------------------------------------------------------------------------------- /test/secret-config/secret-config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/secret-config/secret-config.tf -------------------------------------------------------------------------------- /test/secret-scan/secret-scan.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/secret-scan/secret-scan.tf -------------------------------------------------------------------------------- /test/skip-conftest-open-tofu/skip-conftest.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-conftest-open-tofu/skip-conftest.tf -------------------------------------------------------------------------------- /test/skip-conftest-open-tofu/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-conftest-open-tofu/tfplan.json -------------------------------------------------------------------------------- /test/skip-conftest/skip-conftest.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-conftest/skip-conftest.tf -------------------------------------------------------------------------------- /test/skip-conftest/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-conftest/tfplan.json -------------------------------------------------------------------------------- /test/skip-fmt-open-tofu/skip-fmt.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-fmt-open-tofu/skip-fmt.tf -------------------------------------------------------------------------------- /test/skip-fmt-open-tofu/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-fmt-open-tofu/tfplan.json -------------------------------------------------------------------------------- /test/skip-fmt/skip-fmt.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-fmt/skip-fmt.tf -------------------------------------------------------------------------------- /test/skip-fmt/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-fmt/tfplan.json -------------------------------------------------------------------------------- /test/skip-plan-open-tofu/skip-plan.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-plan-open-tofu/skip-plan.tf -------------------------------------------------------------------------------- /test/skip-plan-open-tofu/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-plan-open-tofu/tfplan.json -------------------------------------------------------------------------------- /test/skip-plan/skip-plan.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-plan/skip-plan.tf -------------------------------------------------------------------------------- /test/skip-plan/tfplan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/skip-plan/tfplan.json -------------------------------------------------------------------------------- /test/terragrunt-open-tofu/provider.tf: -------------------------------------------------------------------------------- 1 | # Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa 2 | provider "aws" { 3 | region = "ca-central-1" 4 | } 5 | -------------------------------------------------------------------------------- /test/terragrunt-open-tofu/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/terragrunt-open-tofu/terragrunt.hcl -------------------------------------------------------------------------------- /test/terragrunt-open-tofu/terragrunt.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/terragrunt-open-tofu/terragrunt.tf -------------------------------------------------------------------------------- /test/terragrunt/provider.tf: -------------------------------------------------------------------------------- 1 | # Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa 2 | provider "aws" { 3 | region = "us-canada-1" 4 | } 5 | -------------------------------------------------------------------------------- /test/terragrunt/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/terragrunt/terragrunt.hcl -------------------------------------------------------------------------------- /test/terragrunt/terragrunt.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/terragrunt/terragrunt.tf -------------------------------------------------------------------------------- /test/truncate-plan-open-tofu/truncate-plan.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/truncate-plan-open-tofu/truncate-plan.tf -------------------------------------------------------------------------------- /test/truncate-plan/truncate-plan.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/truncate-plan/truncate-plan.tf -------------------------------------------------------------------------------- /test/validate-fail-open-tofu/validate-fail.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/validate-fail-open-tofu/validate-fail.tf -------------------------------------------------------------------------------- /test/validate-fail/validate-fail.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cds-snc/terraform-plan/HEAD/test/validate-fail/validate-fail.tf --------------------------------------------------------------------------------