├── .github ├── dependabot.yml └── workflows │ ├── terraform-apply.yml │ ├── terraform-plan.yml │ └── your-fork.yml ├── .gitignore ├── LICENSE ├── README.md └── main.tf /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-github-actions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/terraform-apply.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-github-actions/HEAD/.github/workflows/terraform-apply.yml -------------------------------------------------------------------------------- /.github/workflows/terraform-plan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-github-actions/HEAD/.github/workflows/terraform-plan.yml -------------------------------------------------------------------------------- /.github/workflows/your-fork.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-github-actions/HEAD/.github/workflows/your-fork.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-github-actions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-github-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-github-actions/HEAD/README.md -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-github-actions/HEAD/main.tf --------------------------------------------------------------------------------