├── .gitignore ├── application-gateway ├── .terraform.lock.hcl ├── README.md ├── app_gateway.tf ├── install_nginx.sh ├── network.tf ├── provider.tf ├── resourcegroup.tf ├── scaleset.tf └── vars.tf ├── autoscaling ├── .terraform.lock.hcl ├── autoscaling.tf ├── loadbalancer.tf ├── network.tf ├── provider.tf ├── resourcegroup.tf ├── scaleset.tf └── vars.tf ├── azure-ad ├── README.md ├── azure_ad.tf ├── main.tf ├── output.tf └── vars.tf ├── blob-storage ├── README.md ├── blob_storage.tf ├── instance.tf ├── main.tf ├── network.tf ├── output.tf ├── trainingfile.txt └── vars.tf ├── conditionals ├── README.md ├── blob_storage.tf ├── main.tf ├── productionfile.txt ├── trainingfile.txt └── vars.tf ├── database-cosmosdb ├── .terraform.lock.hcl ├── README.md ├── azure_cosmosdb.tf ├── instance.tf ├── main.tf ├── network.tf ├── output.tf └── vars.tf ├── database-mssql ├── .terraform.lock.hcl ├── README.md ├── azure_database.tf ├── instance.tf ├── main.tf ├── network.tf ├── output.tf └── vars.tf ├── database-mysql ├── .terraform.lock.hcl ├── README.md ├── azure_database.tf ├── instance.tf ├── main.tf ├── network.tf ├── output.tf └── vars.tf ├── first-steps ├── .terraform.lock.hcl ├── README.md ├── instance.tf ├── main.tf ├── network.tf └── vars.tf ├── for-foreach ├── .terraform.lock.hcl ├── instance.tf ├── main.tf ├── network.tf ├── test-vars.tf └── vars.tf ├── functions ├── 1_numeric_functions │ └── max.tf ├── 2_string_functions │ ├── lower.tf │ └── substr.tf ├── 3_collection_functions │ ├── lookup.tf │ └── map.tf ├── 4_encoding_functions │ └── base64encode.tf ├── 5_filesystem_functions │ ├── file.tf │ └── file.txt ├── 6_date_and_time_functions │ ├── timeadd.tf │ └── timestamp.tf ├── 7_hash_and_crypto_functions │ ├── bcrypt.tf │ └── md5.tf ├── 8_ip_network_functions │ └── cidrnetmask.tf └── 9_type_conversion_functions │ ├── tolist.tf │ └── tonumber.tf ├── kubernetes ├── .terraform.lock.hcl ├── README.MD ├── azuread.tf ├── cluster.tf ├── demo-app │ ├── Dockerfile │ ├── azure-pipelines.yml │ ├── index.js │ ├── manifests │ │ ├── deployment.yaml │ │ └── service.yaml │ ├── package-lock.json │ └── package.json ├── main.tf ├── registry.tf └── vars.tf ├── network-security-groups ├── .terraform.lock.hcl ├── instance.tf ├── main.tf ├── network.tf ├── resourcegroup.tf └── vars.tf ├── remote-state ├── README.MD ├── instance.tf ├── main.tf ├── network.tf ├── output.tf └── vars.tf ├── resource-group ├── .terraform.lock.hcl ├── main.tf ├── resourcegroup.tf └── vars.tf ├── setup └── README.md └── streaming-analytics-iot ├── README.MD ├── main.tf ├── streaming.tf └── vars.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/.gitignore -------------------------------------------------------------------------------- /application-gateway/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/application-gateway/.terraform.lock.hcl -------------------------------------------------------------------------------- /application-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/application-gateway/README.md -------------------------------------------------------------------------------- /application-gateway/app_gateway.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/application-gateway/app_gateway.tf -------------------------------------------------------------------------------- /application-gateway/install_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/application-gateway/install_nginx.sh -------------------------------------------------------------------------------- /application-gateway/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/application-gateway/network.tf -------------------------------------------------------------------------------- /application-gateway/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/application-gateway/provider.tf -------------------------------------------------------------------------------- /application-gateway/resourcegroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/application-gateway/resourcegroup.tf -------------------------------------------------------------------------------- /application-gateway/scaleset.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/application-gateway/scaleset.tf -------------------------------------------------------------------------------- /application-gateway/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/application-gateway/vars.tf -------------------------------------------------------------------------------- /autoscaling/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/autoscaling/.terraform.lock.hcl -------------------------------------------------------------------------------- /autoscaling/autoscaling.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/autoscaling/autoscaling.tf -------------------------------------------------------------------------------- /autoscaling/loadbalancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/autoscaling/loadbalancer.tf -------------------------------------------------------------------------------- /autoscaling/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/autoscaling/network.tf -------------------------------------------------------------------------------- /autoscaling/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/autoscaling/provider.tf -------------------------------------------------------------------------------- /autoscaling/resourcegroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/autoscaling/resourcegroup.tf -------------------------------------------------------------------------------- /autoscaling/scaleset.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/autoscaling/scaleset.tf -------------------------------------------------------------------------------- /autoscaling/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/autoscaling/vars.tf -------------------------------------------------------------------------------- /azure-ad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/azure-ad/README.md -------------------------------------------------------------------------------- /azure-ad/azure_ad.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/azure-ad/azure_ad.tf -------------------------------------------------------------------------------- /azure-ad/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/azure-ad/main.tf -------------------------------------------------------------------------------- /azure-ad/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/azure-ad/output.tf -------------------------------------------------------------------------------- /azure-ad/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/azure-ad/vars.tf -------------------------------------------------------------------------------- /blob-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/blob-storage/README.md -------------------------------------------------------------------------------- /blob-storage/blob_storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/blob-storage/blob_storage.tf -------------------------------------------------------------------------------- /blob-storage/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/blob-storage/instance.tf -------------------------------------------------------------------------------- /blob-storage/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/blob-storage/main.tf -------------------------------------------------------------------------------- /blob-storage/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/blob-storage/network.tf -------------------------------------------------------------------------------- /blob-storage/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/blob-storage/output.tf -------------------------------------------------------------------------------- /blob-storage/trainingfile.txt: -------------------------------------------------------------------------------- 1 | Hey there, 2 | This works! 3 | -------------------------------------------------------------------------------- /blob-storage/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/blob-storage/vars.tf -------------------------------------------------------------------------------- /conditionals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/conditionals/README.md -------------------------------------------------------------------------------- /conditionals/blob_storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/conditionals/blob_storage.tf -------------------------------------------------------------------------------- /conditionals/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/conditionals/main.tf -------------------------------------------------------------------------------- /conditionals/productionfile.txt: -------------------------------------------------------------------------------- 1 | production 2 | -------------------------------------------------------------------------------- /conditionals/trainingfile.txt: -------------------------------------------------------------------------------- 1 | training 2 | -------------------------------------------------------------------------------- /conditionals/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/conditionals/vars.tf -------------------------------------------------------------------------------- /database-cosmosdb/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-cosmosdb/.terraform.lock.hcl -------------------------------------------------------------------------------- /database-cosmosdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-cosmosdb/README.md -------------------------------------------------------------------------------- /database-cosmosdb/azure_cosmosdb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-cosmosdb/azure_cosmosdb.tf -------------------------------------------------------------------------------- /database-cosmosdb/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-cosmosdb/instance.tf -------------------------------------------------------------------------------- /database-cosmosdb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-cosmosdb/main.tf -------------------------------------------------------------------------------- /database-cosmosdb/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-cosmosdb/network.tf -------------------------------------------------------------------------------- /database-cosmosdb/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-cosmosdb/output.tf -------------------------------------------------------------------------------- /database-cosmosdb/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-cosmosdb/vars.tf -------------------------------------------------------------------------------- /database-mssql/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mssql/.terraform.lock.hcl -------------------------------------------------------------------------------- /database-mssql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mssql/README.md -------------------------------------------------------------------------------- /database-mssql/azure_database.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mssql/azure_database.tf -------------------------------------------------------------------------------- /database-mssql/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mssql/instance.tf -------------------------------------------------------------------------------- /database-mssql/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mssql/main.tf -------------------------------------------------------------------------------- /database-mssql/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mssql/network.tf -------------------------------------------------------------------------------- /database-mssql/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mssql/output.tf -------------------------------------------------------------------------------- /database-mssql/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mssql/vars.tf -------------------------------------------------------------------------------- /database-mysql/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mysql/.terraform.lock.hcl -------------------------------------------------------------------------------- /database-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mysql/README.md -------------------------------------------------------------------------------- /database-mysql/azure_database.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mysql/azure_database.tf -------------------------------------------------------------------------------- /database-mysql/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mysql/instance.tf -------------------------------------------------------------------------------- /database-mysql/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mysql/main.tf -------------------------------------------------------------------------------- /database-mysql/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mysql/network.tf -------------------------------------------------------------------------------- /database-mysql/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mysql/output.tf -------------------------------------------------------------------------------- /database-mysql/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/database-mysql/vars.tf -------------------------------------------------------------------------------- /first-steps/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/first-steps/.terraform.lock.hcl -------------------------------------------------------------------------------- /first-steps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/first-steps/README.md -------------------------------------------------------------------------------- /first-steps/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/first-steps/instance.tf -------------------------------------------------------------------------------- /first-steps/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/first-steps/main.tf -------------------------------------------------------------------------------- /first-steps/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/first-steps/network.tf -------------------------------------------------------------------------------- /first-steps/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/first-steps/vars.tf -------------------------------------------------------------------------------- /for-foreach/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/for-foreach/.terraform.lock.hcl -------------------------------------------------------------------------------- /for-foreach/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/for-foreach/instance.tf -------------------------------------------------------------------------------- /for-foreach/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/for-foreach/main.tf -------------------------------------------------------------------------------- /for-foreach/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/for-foreach/network.tf -------------------------------------------------------------------------------- /for-foreach/test-vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/for-foreach/test-vars.tf -------------------------------------------------------------------------------- /for-foreach/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/for-foreach/vars.tf -------------------------------------------------------------------------------- /functions/1_numeric_functions/max.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/1_numeric_functions/max.tf -------------------------------------------------------------------------------- /functions/2_string_functions/lower.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/2_string_functions/lower.tf -------------------------------------------------------------------------------- /functions/2_string_functions/substr.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/2_string_functions/substr.tf -------------------------------------------------------------------------------- /functions/3_collection_functions/lookup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/3_collection_functions/lookup.tf -------------------------------------------------------------------------------- /functions/3_collection_functions/map.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/3_collection_functions/map.tf -------------------------------------------------------------------------------- /functions/4_encoding_functions/base64encode.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/4_encoding_functions/base64encode.tf -------------------------------------------------------------------------------- /functions/5_filesystem_functions/file.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/5_filesystem_functions/file.tf -------------------------------------------------------------------------------- /functions/5_filesystem_functions/file.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /functions/6_date_and_time_functions/timeadd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/6_date_and_time_functions/timeadd.tf -------------------------------------------------------------------------------- /functions/6_date_and_time_functions/timestamp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/6_date_and_time_functions/timestamp.tf -------------------------------------------------------------------------------- /functions/7_hash_and_crypto_functions/bcrypt.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/7_hash_and_crypto_functions/bcrypt.tf -------------------------------------------------------------------------------- /functions/7_hash_and_crypto_functions/md5.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/7_hash_and_crypto_functions/md5.tf -------------------------------------------------------------------------------- /functions/8_ip_network_functions/cidrnetmask.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/8_ip_network_functions/cidrnetmask.tf -------------------------------------------------------------------------------- /functions/9_type_conversion_functions/tolist.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/9_type_conversion_functions/tolist.tf -------------------------------------------------------------------------------- /functions/9_type_conversion_functions/tonumber.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/functions/9_type_conversion_functions/tonumber.tf -------------------------------------------------------------------------------- /kubernetes/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/.terraform.lock.hcl -------------------------------------------------------------------------------- /kubernetes/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/README.MD -------------------------------------------------------------------------------- /kubernetes/azuread.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/azuread.tf -------------------------------------------------------------------------------- /kubernetes/cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/cluster.tf -------------------------------------------------------------------------------- /kubernetes/demo-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/demo-app/Dockerfile -------------------------------------------------------------------------------- /kubernetes/demo-app/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/demo-app/azure-pipelines.yml -------------------------------------------------------------------------------- /kubernetes/demo-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/demo-app/index.js -------------------------------------------------------------------------------- /kubernetes/demo-app/manifests/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/demo-app/manifests/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/demo-app/manifests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/demo-app/manifests/service.yaml -------------------------------------------------------------------------------- /kubernetes/demo-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/demo-app/package-lock.json -------------------------------------------------------------------------------- /kubernetes/demo-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/demo-app/package.json -------------------------------------------------------------------------------- /kubernetes/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/main.tf -------------------------------------------------------------------------------- /kubernetes/registry.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/registry.tf -------------------------------------------------------------------------------- /kubernetes/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/kubernetes/vars.tf -------------------------------------------------------------------------------- /network-security-groups/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/network-security-groups/.terraform.lock.hcl -------------------------------------------------------------------------------- /network-security-groups/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/network-security-groups/instance.tf -------------------------------------------------------------------------------- /network-security-groups/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/network-security-groups/main.tf -------------------------------------------------------------------------------- /network-security-groups/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/network-security-groups/network.tf -------------------------------------------------------------------------------- /network-security-groups/resourcegroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/network-security-groups/resourcegroup.tf -------------------------------------------------------------------------------- /network-security-groups/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/network-security-groups/vars.tf -------------------------------------------------------------------------------- /remote-state/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/remote-state/README.MD -------------------------------------------------------------------------------- /remote-state/instance.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/remote-state/instance.tf -------------------------------------------------------------------------------- /remote-state/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/remote-state/main.tf -------------------------------------------------------------------------------- /remote-state/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/remote-state/network.tf -------------------------------------------------------------------------------- /remote-state/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/remote-state/output.tf -------------------------------------------------------------------------------- /remote-state/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/remote-state/vars.tf -------------------------------------------------------------------------------- /resource-group/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/resource-group/.terraform.lock.hcl -------------------------------------------------------------------------------- /resource-group/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/resource-group/main.tf -------------------------------------------------------------------------------- /resource-group/resourcegroup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/resource-group/resourcegroup.tf -------------------------------------------------------------------------------- /resource-group/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/resource-group/vars.tf -------------------------------------------------------------------------------- /setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/setup/README.md -------------------------------------------------------------------------------- /streaming-analytics-iot/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/streaming-analytics-iot/README.MD -------------------------------------------------------------------------------- /streaming-analytics-iot/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/streaming-analytics-iot/main.tf -------------------------------------------------------------------------------- /streaming-analytics-iot/streaming.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/streaming-analytics-iot/streaming.tf -------------------------------------------------------------------------------- /streaming-analytics-iot/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in4it/terraform-azure-course/HEAD/streaming-analytics-iot/vars.tf --------------------------------------------------------------------------------