├── .copywrite.hcl ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── backend.tf ├── main.tf ├── provider.tf └── scripts └── setup.sh /.copywrite.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-getting-started/HEAD/.copywrite.hcl -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-getting-started/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-getting-started/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-getting-started/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-getting-started/HEAD/README.md -------------------------------------------------------------------------------- /backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-getting-started/HEAD/backend.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-getting-started/HEAD/main.tf -------------------------------------------------------------------------------- /provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-getting-started/HEAD/provider.tf -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/tfc-getting-started/HEAD/scripts/setup.sh --------------------------------------------------------------------------------