├── .github ├── dependabot.yml └── workflows │ ├── actionlint.yml │ └── infrastructure-tests.yml ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── exercises ├── main.tf.completed ├── main.tf.cowsay ├── main.tf.start ├── outputs.tf.completed ├── outputs.tf.start └── remote_backend.tf ├── files └── deploy_app.sh ├── main.tf ├── outputs.tf ├── terraform.tfvars.example └── variables.tf /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/infrastructure-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/.github/workflows/infrastructure-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/team-customer-design-labs 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/README.md -------------------------------------------------------------------------------- /exercises/main.tf.completed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/exercises/main.tf.completed -------------------------------------------------------------------------------- /exercises/main.tf.cowsay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/exercises/main.tf.cowsay -------------------------------------------------------------------------------- /exercises/main.tf.start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/exercises/main.tf.start -------------------------------------------------------------------------------- /exercises/outputs.tf.completed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/exercises/outputs.tf.completed -------------------------------------------------------------------------------- /exercises/outputs.tf.start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/exercises/outputs.tf.start -------------------------------------------------------------------------------- /exercises/remote_backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/exercises/remote_backend.tf -------------------------------------------------------------------------------- /files/deploy_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/files/deploy_app.sh -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/outputs.tf -------------------------------------------------------------------------------- /terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/terraform.tfvars.example -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/hashicat-aws/HEAD/variables.tf --------------------------------------------------------------------------------