├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github └── FUNDING.yml ├── LICENSE ├── README.md └── labs ├── lab_01_getting_started_with_terraform ├── aws.md ├── azure.md └── github.md ├── lab_02_create_your_first_resource ├── aws.md ├── azure.md └── github.md ├── lab_03_working_with_variables_and_dependencies ├── aws.md ├── azure.md └── github.md ├── lab_04_managing_mulitple_resources ├── aws.md ├── azure.md └── github.md ├── lab_05_working_with_state_data_sources_and_cli ├── aws.md ├── azure.md └── github.md ├── lab_06_making_code_dynamic_and_reusable ├── AWS │ ├── aws.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── lab_07_simplify_code_with_local_values ├── AWS │ ├── aws.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── lab_08_create_mulitple_resources_with_count ├── AWS │ ├── aws.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── lab_09_deploying_mulitple_resources_with_for_each ├── AWS │ ├── aws.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── lab_10_managing_explicit_dependencies_with_depends_on ├── AWS │ ├── aws.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── lab_11_using_multiple_providers_for_mulitple_regions ├── AWS │ ├── aws.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── lab_12_managing_resource_lifecycle_using_lifecyle ├── AWS │ ├── aws.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── lab_13_using_terraform_built_in_functions ├── AWS │ ├── aws.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── lab_14_using_the_terraform_registry ├── AWS │ ├── aws.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── lab_15_build_your_own_modules ├── AWS │ ├── aws.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf ├── AZURE │ ├── azure.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf └── GITHUB │ ├── github.md │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ └── variables.tf └── lab_16_replace_a_single_resource ├── AWS ├── aws.md ├── main.tf ├── outputs.tf ├── providers.tf └── variables.tf ├── AZURE ├── azure.md ├── main.tf ├── outputs.tf ├── providers.tf └── variables.tf └── GITHUB ├── github.md ├── main.tf ├── outputs.tf ├── providers.tf └── variables.tf /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [btkrausen] 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/README.md -------------------------------------------------------------------------------- /labs/lab_01_getting_started_with_terraform/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_01_getting_started_with_terraform/aws.md -------------------------------------------------------------------------------- /labs/lab_01_getting_started_with_terraform/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_01_getting_started_with_terraform/azure.md -------------------------------------------------------------------------------- /labs/lab_01_getting_started_with_terraform/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_01_getting_started_with_terraform/github.md -------------------------------------------------------------------------------- /labs/lab_02_create_your_first_resource/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_02_create_your_first_resource/aws.md -------------------------------------------------------------------------------- /labs/lab_02_create_your_first_resource/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_02_create_your_first_resource/azure.md -------------------------------------------------------------------------------- /labs/lab_02_create_your_first_resource/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_02_create_your_first_resource/github.md -------------------------------------------------------------------------------- /labs/lab_03_working_with_variables_and_dependencies/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_03_working_with_variables_and_dependencies/aws.md -------------------------------------------------------------------------------- /labs/lab_03_working_with_variables_and_dependencies/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_03_working_with_variables_and_dependencies/azure.md -------------------------------------------------------------------------------- /labs/lab_03_working_with_variables_and_dependencies/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_03_working_with_variables_and_dependencies/github.md -------------------------------------------------------------------------------- /labs/lab_04_managing_mulitple_resources/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_04_managing_mulitple_resources/aws.md -------------------------------------------------------------------------------- /labs/lab_04_managing_mulitple_resources/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_04_managing_mulitple_resources/azure.md -------------------------------------------------------------------------------- /labs/lab_04_managing_mulitple_resources/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_04_managing_mulitple_resources/github.md -------------------------------------------------------------------------------- /labs/lab_05_working_with_state_data_sources_and_cli/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_05_working_with_state_data_sources_and_cli/aws.md -------------------------------------------------------------------------------- /labs/lab_05_working_with_state_data_sources_and_cli/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_05_working_with_state_data_sources_and_cli/azure.md -------------------------------------------------------------------------------- /labs/lab_05_working_with_state_data_sources_and_cli/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_05_working_with_state_data_sources_and_cli/github.md -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_06_making_code_dynamic_and_reusable/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/AWS/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_06_making_code_dynamic_and_reusable/AWS/main.tf -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_06_making_code_dynamic_and_reusable/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/AWS/variables.tf: -------------------------------------------------------------------------------- 1 | # Add variables below -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_06_making_code_dynamic_and_reusable/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/AZURE/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_06_making_code_dynamic_and_reusable/AZURE/main.tf -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_06_making_code_dynamic_and_reusable/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/AZURE/variables.tf: -------------------------------------------------------------------------------- 1 | # Add variables below 2 | -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_06_making_code_dynamic_and_reusable/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/GITHUB/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_06_making_code_dynamic_and_reusable/GITHUB/main.tf -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_06_making_code_dynamic_and_reusable/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_06_making_code_dynamic_and_reusable/GITHUB/variables.tf: -------------------------------------------------------------------------------- 1 | # Add variables below -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/AWS/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/AWS/main.tf -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/AZURE/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/AZURE/main.tf -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/AZURE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/AZURE/variables.tf -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/GITHUB/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/GITHUB/main.tf -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_07_simplify_code_with_local_values/GITHUB/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_07_simplify_code_with_local_values/GITHUB/variables.tf -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/AWS/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/AWS/main.tf -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/AZURE/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/AZURE/main.tf -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/AZURE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/AZURE/variables.tf -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/GITHUB/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/GITHUB/main.tf -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_08_create_mulitple_resources_with_count/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_08_create_mulitple_resources_with_count/GITHUB/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/AWS/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/AWS/main.tf -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/AZURE/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/AZURE/main.tf -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/AZURE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/AZURE/variables.tf -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/GITHUB/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/GITHUB/main.tf -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_09_deploying_mulitple_resources_with_for_each/GITHUB/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_09_deploying_mulitple_resources_with_for_each/GITHUB/variables.tf -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/AWS/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/AWS/main.tf -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/AZURE/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/AZURE/main.tf -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/AZURE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/AZURE/variables.tf -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/GITHUB/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/GITHUB/main.tf -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_10_managing_explicit_dependencies_with_depends_on/GITHUB/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_10_managing_explicit_dependencies_with_depends_on/GITHUB/variables.tf -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/AWS/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/AWS/main.tf -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/AZURE/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/AZURE/main.tf -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/AZURE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/AZURE/variables.tf -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/GITHUB/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/GITHUB/main.tf -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_11_using_multiple_providers_for_mulitple_regions/GITHUB/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_11_using_multiple_providers_for_mulitple_regions/GITHUB/variables.tf -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/AWS/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/AWS/main.tf -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/AZURE/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/AZURE/main.tf -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/AZURE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/AZURE/variables.tf -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/GITHUB/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/GITHUB/main.tf -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_12_managing_resource_lifecycle_using_lifecyle/GITHUB/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_12_managing_resource_lifecycle_using_lifecyle/GITHUB/variables.tf -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_13_using_terraform_built_in_functions/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/AWS/main.tf: -------------------------------------------------------------------------------- 1 | # Add resource blocks below -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_13_using_terraform_built_in_functions/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_13_using_terraform_built_in_functions/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_13_using_terraform_built_in_functions/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/AZURE/main.tf: -------------------------------------------------------------------------------- 1 | # Add resources for the lab below 2 | 3 | -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_13_using_terraform_built_in_functions/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/AZURE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_13_using_terraform_built_in_functions/AZURE/variables.tf -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_13_using_terraform_built_in_functions/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/GITHUB/main.tf: -------------------------------------------------------------------------------- 1 | # Add resources for the lab below 2 | -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_13_using_terraform_built_in_functions/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_13_using_terraform_built_in_functions/GITHUB/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_13_using_terraform_built_in_functions/GITHUB/variables.tf -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_14_using_the_terraform_registry/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/AWS/main.tf: -------------------------------------------------------------------------------- 1 | # Add resource blocks below -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_14_using_the_terraform_registry/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_14_using_the_terraform_registry/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_14_using_the_terraform_registry/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/AZURE/main.tf: -------------------------------------------------------------------------------- 1 | # Add resources for the lab below 2 | 3 | -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_14_using_the_terraform_registry/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/AZURE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_14_using_the_terraform_registry/AZURE/variables.tf -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_14_using_the_terraform_registry/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/GITHUB/main.tf: -------------------------------------------------------------------------------- 1 | # Add resources for the lab below 2 | -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_14_using_the_terraform_registry/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_14_using_the_terraform_registry/GITHUB/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_14_using_the_terraform_registry/GITHUB/variables.tf -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_15_build_your_own_modules/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AWS/main.tf: -------------------------------------------------------------------------------- 1 | # Add resource blocks below -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AWS/outputs.tf: -------------------------------------------------------------------------------- 1 | # Add outputs below -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_15_build_your_own_modules/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_15_build_your_own_modules/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_15_build_your_own_modules/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AZURE/main.tf: -------------------------------------------------------------------------------- 1 | # Add resources for the lab below 2 | -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AZURE/outputs.tf: -------------------------------------------------------------------------------- 1 | # Add outputs below 2 | -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_15_build_your_own_modules/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/AZURE/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_15_build_your_own_modules/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/GITHUB/main.tf: -------------------------------------------------------------------------------- 1 | # Add resources for the lab below 2 | -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/GITHUB/outputs.tf: -------------------------------------------------------------------------------- 1 | # Add outputs below 2 | -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_15_build_your_own_modules/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_15_build_your_own_modules/GITHUB/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_15_build_your_own_modules/GITHUB/variables.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AWS/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AWS/aws.md -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AWS/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AWS/main.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AWS/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AWS/outputs.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AWS/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AWS/providers.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AWS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AWS/variables.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AZURE/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AZURE/azure.md -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AZURE/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AZURE/main.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AZURE/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AZURE/outputs.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AZURE/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AZURE/providers.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/AZURE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/AZURE/variables.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/GITHUB/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/GITHUB/github.md -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/GITHUB/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/GITHUB/main.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/GITHUB/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/GITHUB/outputs.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/GITHUB/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/GITHUB/providers.tf -------------------------------------------------------------------------------- /labs/lab_16_replace_a_single_resource/GITHUB/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btkrausen/terraform-codespaces/HEAD/labs/lab_16_replace_a_single_resource/GITHUB/variables.tf --------------------------------------------------------------------------------