├── 2023 ├── 001 │ ├── main.tf │ ├── monitor.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 002 │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 003 │ ├── main.tf │ ├── ssh.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 004 │ ├── compute.tf │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 005 │ ├── bastion.tf │ ├── compute.tf │ ├── main.tf │ ├── network.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 006 │ ├── compute.tf │ ├── main.tf │ ├── network.tf │ ├── terraform.tfvars │ ├── variables.tf │ ├── versions.tf │ └── vpn.tf ├── 007 │ ├── app │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ └── backend │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 008 │ ├── .azdo-pipelines │ │ ├── scripts │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ └── terraform │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 009 │ ├── packer │ │ ├── linux │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ └── variables.pkr.hcl │ │ └── windows │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ └── variables.pkr.hcl │ └── terraform │ │ ├── modules │ │ ├── network │ │ │ └── bastion │ │ │ │ ├── bastion.tf │ │ │ │ ├── network.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── vm │ │ │ ├── linux │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── windows │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── packer-repo │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ └── packer-tester │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ ├── versions.tf │ │ ├── vm-linux.tf │ │ └── vm-windows.tf ├── 010 │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 011 │ ├── packer │ │ └── linux │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ └── terraform │ │ └── packer-repo │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 012 │ └── README.md ├── 013 │ ├── README.md │ └── infra-machine-images │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ ├── baseline-ubuntu-1804 │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ └── variables.pkr.hcl │ │ └── baseline-ubuntu-2004 │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ └── variables.pkr.hcl │ │ └── terraform │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 014 │ ├── README.md │ └── infra-machine-images │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ └── baseline-ubuntu-1804 │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ └── variables.pkr.hcl │ │ └── terraform │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 015 │ └── README.md ├── 016 │ ├── README.md │ ├── packer │ │ ├── azure.pkr.hcl │ │ ├── build.pkr.hcl │ │ ├── files │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ ├── locals.pkr.hcl │ │ ├── plugins.pkr.hcl │ │ ├── variables.pkr.hcl │ │ └── variables.pkrvars.hcl │ └── terraform │ │ ├── minecraft-tester │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── network.tf │ │ ├── scripts │ │ │ └── minecraft-postprov.sh │ │ ├── ssh.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ ├── verrsions.tf │ │ └── vm.tf │ │ └── modules │ │ ├── kv │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── network │ │ └── bastion │ │ │ ├── bastion.tf │ │ │ ├── network.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── vm │ │ ├── linux-private │ │ ├── main.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── linux-public │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ └── windows-private │ │ ├── main.tf │ │ ├── variables.tf │ │ └── versions.tf ├── 017 │ ├── README.md │ ├── packer │ │ ├── azure.pkr.hcl │ │ ├── build.pkr.hcl │ │ ├── files │ │ │ ├── blobfuse-config.yaml │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ ├── locals.pkr.hcl │ │ ├── plugins.pkr.hcl │ │ ├── variables.pkr.hcl │ │ └── variables.pkrvars.hcl │ └── terraform │ │ ├── minecraft-tester │ │ ├── files │ │ │ └── blobfuse-setup.sh │ │ ├── identity.tf │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── network.tf │ │ ├── ssh.tf │ │ ├── storage.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ ├── verrsions.tf │ │ └── vm.tf │ │ └── modules │ │ ├── kv │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── network │ │ └── bastion │ │ │ ├── bastion.tf │ │ │ ├── network.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── vm │ │ ├── linux-private │ │ ├── main.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── linux-public │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ └── windows-private │ │ ├── main.tf │ │ ├── variables.tf │ │ └── versions.tf ├── 018 │ ├── README.md │ ├── packer │ │ ├── azure.pkr.hcl │ │ ├── build.pkr.hcl │ │ ├── files │ │ │ ├── blobfuse-config.yaml │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ ├── locals.pkr.hcl │ │ ├── plugins.pkr.hcl │ │ ├── variables.pkr.hcl │ │ └── variables.pkrvars.hcl │ └── terraform │ │ ├── minecraft-tester │ │ ├── files │ │ │ └── blobfuse-setup.sh │ │ ├── identity.tf │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── network.tf │ │ ├── ssh.tf │ │ ├── storage.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ ├── verrsions.tf │ │ └── vm.tf │ │ └── modules │ │ ├── kv │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── network │ │ └── bastion │ │ │ ├── bastion.tf │ │ │ ├── network.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── vm │ │ ├── linux-private │ │ ├── main.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── linux-public │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ └── windows-private │ │ ├── main.tf │ │ ├── variables.tf │ │ └── versions.tf ├── 019 │ ├── README.md │ └── infra-machine-images │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ └── baseline-ubuntu-1804 │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ └── variables.pkr.hcl │ │ └── terraform │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 020 │ └── README.md ├── 021 │ ├── README.md │ └── minecraft │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ ├── blob-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ │ ├── blobfuse-config.yaml │ │ │ │ ├── mcbedrock.service │ │ │ │ ├── start_server.sh │ │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── local-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── terraform │ │ ├── modules │ │ ├── kv │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── minecraft │ │ │ ├── blob-storage-backend │ │ │ │ ├── files │ │ │ │ │ └── blobfuse-setup.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── storage.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ │ └── local-storage-backend │ │ │ │ ├── files │ │ │ │ └── minecraft-postprov.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ ├── network │ │ │ └── bastion │ │ │ │ ├── bastion.tf │ │ │ │ ├── network.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── vm │ │ │ ├── linux-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── linux-public │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── windows-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── v1 │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── minecraft.tf │ │ ├── network.tf │ │ ├── ssh.tf │ │ ├── variables.tf │ │ └── verrsions.tf ├── 022 │ └── README.md ├── 023 │ ├── README.md │ └── minecraft │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ ├── blob-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ │ ├── blobfuse-config.yaml │ │ │ │ ├── mcbedrock.service │ │ │ │ ├── start_server.sh │ │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── local-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── terraform │ │ ├── modules │ │ ├── kv │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── minecraft │ │ │ ├── blob-storage-backend │ │ │ │ ├── files │ │ │ │ │ └── blobfuse-setup.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── storage.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ │ └── local-storage-backend │ │ │ │ ├── files │ │ │ │ └── minecraft-postprov.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ ├── network │ │ │ └── bastion │ │ │ │ ├── bastion.tf │ │ │ │ ├── network.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── vm │ │ │ ├── linux-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── linux-public │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── windows-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── v1 │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── minecraft.tf │ │ ├── network.tf │ │ ├── ssh.tf │ │ ├── variables.tf │ │ └── verrsions.tf ├── 024 │ ├── README.md │ └── minecraft │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ ├── blob-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ │ ├── blobfuse-config.yaml │ │ │ │ ├── mcbedrock.service │ │ │ │ ├── start_server.sh │ │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── local-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── terraform │ │ ├── modules │ │ ├── kv │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── minecraft │ │ │ ├── blob-storage-backend │ │ │ │ ├── files │ │ │ │ │ └── blobfuse-setup.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── storage.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ │ └── local-storage-backend │ │ │ │ ├── files │ │ │ │ └── minecraft-postprov.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ ├── network │ │ │ └── bastion │ │ │ │ ├── bastion.tf │ │ │ │ ├── network.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── vm │ │ │ ├── linux-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── linux-public │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── windows-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── v1 │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── minecraft.tf │ │ ├── network.tf │ │ ├── ssh.tf │ │ ├── variables.tf │ │ └── verrsions.tf ├── 025 │ ├── README.md │ └── minecraft │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ ├── blob-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ │ ├── blobfuse-config.yaml │ │ │ │ ├── mcbedrock.service │ │ │ │ ├── start_server.sh │ │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── local-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── terraform │ │ ├── modules │ │ ├── kv │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── minecraft │ │ │ ├── blob-storage-backend │ │ │ │ ├── files │ │ │ │ │ └── blobfuse-setup.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── storage.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ │ └── local-storage-backend │ │ │ │ ├── files │ │ │ │ └── minecraft-postprov.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ ├── network │ │ │ └── bastion │ │ │ │ ├── bastion.tf │ │ │ │ ├── network.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── vm │ │ │ ├── linux-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── linux-public │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── windows-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── v1 │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── minecraft.tf │ │ ├── network.tf │ │ ├── ssh.tf │ │ ├── variables.tf │ │ └── verrsions.tf ├── 026 │ ├── README.md │ └── minecraft │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ ├── blob-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ │ ├── blobfuse-config.yaml │ │ │ │ ├── mcbedrock.service │ │ │ │ ├── start_server.sh │ │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── local-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── terraform │ │ ├── modules │ │ ├── kv │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── minecraft │ │ │ ├── blob-storage-backend │ │ │ │ ├── files │ │ │ │ │ └── blobfuse-setup.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── storage.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ │ └── local-storage-backend │ │ │ │ ├── files │ │ │ │ └── minecraft-postprov.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ ├── network │ │ │ └── bastion │ │ │ │ ├── bastion.tf │ │ │ │ ├── network.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── vm │ │ │ ├── linux-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── linux-public │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── windows-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── v1 │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── minecraft.tf │ │ ├── network.tf │ │ ├── ssh.tf │ │ ├── variables.tf │ │ └── verrsions.tf ├── 027 │ ├── README.md │ └── minecraft │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ ├── blob-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ │ ├── blobfuse-config.yaml │ │ │ │ ├── mcbedrock.service │ │ │ │ ├── start_server.sh │ │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── local-storage │ │ │ ├── aws.pkr.hcl │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ │ ├── gcp.pkr.hcl │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── terraform │ │ ├── modules │ │ ├── kv │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── minecraft │ │ │ ├── blob-storage-backend │ │ │ │ ├── files │ │ │ │ │ └── blobfuse-setup.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── storage.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ │ └── local-storage-backend │ │ │ │ ├── files │ │ │ │ └── minecraft-postprov.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ ├── network │ │ │ └── bastion │ │ │ │ ├── bastion.tf │ │ │ │ ├── network.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── vm │ │ │ ├── linux-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── linux-public │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── windows-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── v1 │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── minecraft.tf │ │ ├── network.tf │ │ ├── ssh.tf │ │ ├── variables.tf │ │ └── verrsions.tf ├── 028 │ ├── README.md │ └── minecraft │ │ ├── .azdo-pipelines │ │ ├── packer-build.yaml │ │ ├── scripts │ │ │ ├── packer.sh │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ ├── packer │ │ ├── blob-storage │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ │ ├── blobfuse-config.yaml │ │ │ │ ├── mcbedrock.service │ │ │ │ ├── start_server.sh │ │ │ │ └── stop_server.sh │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── local-storage │ │ │ ├── aws.pkr.hcl │ │ │ ├── azure.pkr.hcl │ │ │ ├── build.pkr.hcl │ │ │ ├── env-dev.pkrvars.hcl │ │ │ ├── env-prod.pkrvars.hcl │ │ │ ├── files │ │ │ ├── mcbedrock.service │ │ │ ├── start_server.sh │ │ │ └── stop_server.sh │ │ │ ├── gcp.pkr.hcl │ │ │ ├── locals.pkr.hcl │ │ │ ├── plugins.pkr.hcl │ │ │ ├── variables.pkr.hcl │ │ │ └── variables.pkrvars.hcl │ │ └── terraform │ │ ├── modules │ │ ├── kv │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── minecraft │ │ │ ├── blob-storage-backend │ │ │ │ ├── files │ │ │ │ │ └── blobfuse-setup.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── storage.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ │ └── local-storage-backend │ │ │ │ ├── files │ │ │ │ └── minecraft-postprov.sh │ │ │ │ ├── identity.tf │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── verrsions.tf │ │ ├── network │ │ │ └── bastion │ │ │ │ ├── bastion.tf │ │ │ │ ├── network.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── vm │ │ │ ├── linux-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── linux-public │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ └── windows-private │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── v1 │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── kv.tf │ │ ├── main.tf │ │ ├── minecraft.tf │ │ ├── network.tf │ │ ├── ssh.tf │ │ ├── variables.tf │ │ └── verrsions.tf ├── 029 │ ├── README.md │ └── infra-observability │ │ ├── .azdo-pipelines │ │ ├── scripts │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ └── terraform │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── log-analytics.tf │ │ ├── main.tf │ │ ├── storage.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 030 │ ├── README.md │ └── infra-devops │ │ ├── .azdo-pipelines │ │ ├── scripts │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ ├── terraform-multi-stage.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ └── terraform │ │ ├── access-control.tf │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── keyvault.tf │ │ ├── main.tf │ │ ├── ssh.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 031 │ ├── README.md │ └── infra-devops │ │ ├── .azdo-pipelines │ │ ├── scripts │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ └── terraform │ │ ├── access-control.tf │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── keyvault.tf │ │ ├── main.tf │ │ ├── ssh.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 032 │ ├── README.md │ └── infra-devops │ │ ├── .azdo-pipelines │ │ ├── scripts │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ ├── terraform-multi-stage.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ └── terraform │ │ ├── access-control.tf │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── keyvault.tf │ │ ├── main.tf │ │ ├── modules │ │ └── diagnostic-setting │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── ssh.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 033 │ ├── README.md │ └── infra-devops │ │ ├── .azdo-pipelines │ │ ├── scripts │ │ │ └── terraform-with-backend.sh │ │ ├── terraform-apply.yaml │ │ ├── terraform-multi-stage.yaml │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ └── terraform │ │ ├── access-control.tf │ │ ├── env-dev.tfvars │ │ ├── env-prod.tfvars │ │ ├── keyvault.tf │ │ ├── main.tf │ │ ├── modules │ │ └── diagnostic-setting │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── ssh.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 034 │ ├── azdo-tls │ │ └── main.tf │ └── infrastructure │ │ ├── infra-devops │ │ ├── .azdo-pipelines │ │ │ ├── scripts │ │ │ │ └── terraform-with-backend.sh │ │ │ ├── terraform-apply.yaml │ │ │ ├── terraform-multi-stage.yaml │ │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ └── terraform │ │ │ ├── access-control.tf │ │ │ ├── env-dev.tfvars │ │ │ ├── env-prod.tfvars │ │ │ ├── keyvault.tf │ │ │ ├── main.tf │ │ │ ├── modules │ │ │ └── diagnostic-setting │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── ssh.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── terraform-modules │ │ └── rando │ │ ├── main.tf │ │ └── outputs.tf ├── 035 │ └── infrastructure │ │ ├── infra-devops │ │ ├── .azdo-pipelines │ │ │ ├── scripts │ │ │ │ └── terraform-with-backend.sh │ │ │ ├── terraform-apply.yaml │ │ │ ├── terraform-multi-stage.yaml │ │ │ └── terraform-plan.yaml │ │ ├── README.md │ │ └── terraform │ │ │ ├── access-control.tf │ │ │ ├── env-dev.tfvars │ │ │ ├── env-prod.tfvars │ │ │ ├── keyvault.tf │ │ │ ├── main.tf │ │ │ ├── modules │ │ │ └── diagnostic-setting │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── ssh.tf │ │ │ ├── terraform.tfvars │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── terraform-modules │ │ ├── README.md │ │ ├── monitor │ │ └── diagnostic-setting │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── rando │ │ ├── main.tf │ │ └── outputs.tf ├── 036 │ ├── modules │ │ └── network │ │ │ └── bastion │ │ │ ├── bastion.tf │ │ │ ├── network.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ └── tester │ │ ├── compute.tf │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 037 │ ├── modules │ │ └── network │ │ │ └── bastion │ │ │ ├── bastion.tf │ │ │ ├── network.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ └── tester │ │ ├── compute.tf │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 038 │ ├── azdo │ │ └── terraform-modules │ │ │ ├── README.md │ │ │ ├── compute │ │ │ ├── vm-ext │ │ │ │ └── linux-diagnostic │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── template.json │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ └── vm │ │ │ │ └── linux │ │ │ │ └── baseline │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── monitor │ │ │ └── diagnostic-setting │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ └── rando │ │ │ ├── main.tf │ │ │ └── outputs.tf │ ├── modules │ │ └── network │ │ │ └── bastion │ │ │ ├── bastion.tf │ │ │ ├── network.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ └── tester │ │ ├── compute.tf │ │ ├── main.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 039 │ ├── azdo │ │ ├── infra-observability │ │ │ ├── .azdo-pipelines │ │ │ │ ├── scripts │ │ │ │ │ └── terraform-with-backend.sh │ │ │ │ ├── terraform-apply.yaml │ │ │ │ ├── terraform-multi-stage.yaml │ │ │ │ └── terraform-plan.yaml │ │ │ ├── README.md │ │ │ └── terraform │ │ │ │ ├── data-collection-rule.json │ │ │ │ ├── env-dev.tfvars │ │ │ │ ├── env-prod.tfvars │ │ │ │ ├── log-analytics.tf │ │ │ │ ├── main.tf │ │ │ │ ├── monitor.tf │ │ │ │ ├── storage.tf │ │ │ │ ├── terraform.tfvars │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ └── terraform-modules │ │ │ ├── README.md │ │ │ ├── compute │ │ │ ├── vm-ext │ │ │ │ ├── linux-azure-monitor │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ │ └── linux-diagnostic │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── template.json │ │ │ │ │ ├── variables.tf │ │ │ │ │ └── versions.tf │ │ │ └── vm │ │ │ │ └── linux │ │ │ │ └── baseline │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ ├── monitor │ │ │ └── diagnostic-setting │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ └── versions.tf │ │ │ └── rando │ │ │ ├── main.tf │ │ │ └── outputs.tf │ ├── modules │ │ └── network │ │ │ └── bastion │ │ │ ├── bastion.tf │ │ │ ├── network.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ └── tester │ │ ├── compute.tf │ │ ├── main.tf │ │ ├── monitor.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 040 │ └── tester │ │ ├── main.tf │ │ └── versions.tf ├── 041 │ └── tester │ │ ├── main.tf │ │ ├── pipeline.tf │ │ ├── variable-group.tf │ │ └── versions.tf ├── 042 │ └── tester │ │ ├── environments.tf │ │ ├── main.tf │ │ ├── pipeline.tf │ │ ├── terraform.tfvars │ │ ├── variable-group.tf │ │ ├── variables.tf │ │ └── versions.tf ├── 043 │ └── tester │ │ ├── build-validation.tf │ │ ├── environments.tf │ │ ├── main.tf │ │ ├── pipeline-apply.tf │ │ ├── pipeline-plan.tf │ │ ├── terraform.tfvars │ │ ├── variable-group.tf │ │ ├── variables.tf │ │ └── versions.tf ├── 044 │ └── tester │ │ ├── branch-policy.tf │ │ ├── build-validation.tf │ │ ├── environments.tf │ │ ├── main.tf │ │ ├── pipeline-apply.tf │ │ ├── pipeline-plan.tf │ │ ├── terraform.tfvars │ │ ├── variable-group.tf │ │ ├── variables.tf │ │ └── versions.tf ├── 045 │ └── tester │ │ ├── fn.tf │ │ ├── main.tf │ │ ├── plan-consumable.tf │ │ ├── plan-premium.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 047 │ └── azure-tester │ │ ├── README.md │ │ ├── compute.tf │ │ ├── gateway.tf │ │ ├── main.tf │ │ ├── network.tf │ │ ├── outputs.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── 050 │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 076 │ ├── acr.tf │ ├── logs.tf │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 078 │ ├── expected.tfvars │ ├── main.tf │ └── zscalar.json ├── 082 │ ├── main.tf │ ├── terraform.tfvars │ └── versions.tf ├── 083 │ ├── main.tf │ ├── terraform.tfvars │ └── versions.tf ├── 084 │ ├── bulk_user_import.tf │ ├── main.tf │ ├── terraform.tfvars │ ├── users.json │ ├── variables.tf │ └── versions.tf ├── 085 │ ├── group-admin.tf │ ├── group-reader.tf │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 086 │ ├── README.md │ ├── group-admin.tf │ ├── group-reader.tf │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 087 │ ├── main.tf │ ├── modules │ │ └── group-with-members │ │ │ ├── main.tf │ │ │ ├── owners.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── code-reviews │ └── 003 │ │ ├── original │ │ ├── clients │ │ │ ├── client1 │ │ │ │ └── client1.tf │ │ │ ├── client2 │ │ │ │ └── client2.tf │ │ │ └── shared │ │ │ │ ├── main.tf │ │ │ │ └── outputs.tf │ │ ├── main │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── modules │ │ │ ├── app-service │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── application-insights │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── key-vault │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── sql-db │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ ├── storage-blob │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ │ └── virtual-network │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ └── variables.tf │ │ └── shared │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── refactored │ │ └── terraform │ │ ├── client-infra │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf │ │ ├── modules │ │ ├── client-deployment │ │ │ ├── app.tf │ │ │ ├── main.tf │ │ │ ├── mssql.tf │ │ │ ├── outputs.tf │ │ │ ├── storage.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── key-vault │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── shared-infra-regional │ │ │ ├── keyvault.tf │ │ │ ├── main.tf │ │ │ ├── mssql.tf │ │ │ ├── network.tf │ │ │ ├── outputs.tf │ │ │ ├── storage.tf │ │ │ └── variables.tf │ │ └── shared-infra │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── terraform.tfvars │ │ ├── variables.tf │ │ └── versions.tf ├── labs │ └── openai │ │ ├── ep001 │ │ ├── template-parameters.json │ │ └── template.json │ │ ├── ep002 │ │ ├── main.tf │ │ └── versions.tf │ │ └── ep003 │ │ ├── main.tf │ │ └── versions.tf └── mail-bag │ └── 007 │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 2024 ├── 100 │ ├── compute.tf │ ├── keyvault.tf │ ├── main.tf │ ├── network.tf │ ├── outputs.tf │ ├── ssh.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 101 │ ├── compute.tf │ ├── keyvault.tf │ ├── main.tf │ ├── network.tf │ ├── outputs.tf │ ├── ssh.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 102 │ ├── compute.tf │ ├── keyvault.tf │ ├── main.tf │ ├── network.tf │ ├── outputs.tf │ ├── ssh.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf ├── 103 │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf ├── 105 │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf ├── 106 │ ├── main.tf │ ├── variables.tf │ └── versions.tf └── 112 │ ├── 0-start │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf │ ├── 1-upgrade-3x │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf │ ├── 2-moved-block │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf │ ├── 3-removed-block-app │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf │ ├── 4-removed-block-plan │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf │ ├── 5-import-block-plan │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf │ ├── 6-import-block-app │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf │ ├── 7-final │ ├── main.tf │ ├── terraform.tfvars │ ├── variables.tf │ └── versions.tf │ └── README.md ├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/.gitignore -------------------------------------------------------------------------------- /2023/001/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/001/main.tf -------------------------------------------------------------------------------- /2023/001/monitor.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/001/monitor.tf -------------------------------------------------------------------------------- /2023/001/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/001/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/001/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/001/versions.tf -------------------------------------------------------------------------------- /2023/002/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/002/main.tf -------------------------------------------------------------------------------- /2023/002/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/002/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/002/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/002/versions.tf -------------------------------------------------------------------------------- /2023/003/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/003/main.tf -------------------------------------------------------------------------------- /2023/003/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/003/ssh.tf -------------------------------------------------------------------------------- /2023/003/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/003/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/003/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/003/versions.tf -------------------------------------------------------------------------------- /2023/004/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/004/compute.tf -------------------------------------------------------------------------------- /2023/004/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/004/main.tf -------------------------------------------------------------------------------- /2023/004/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/004/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/004/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/004/versions.tf -------------------------------------------------------------------------------- /2023/005/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/005/bastion.tf -------------------------------------------------------------------------------- /2023/005/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/005/compute.tf -------------------------------------------------------------------------------- /2023/005/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/005/main.tf -------------------------------------------------------------------------------- /2023/005/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/005/network.tf -------------------------------------------------------------------------------- /2023/005/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/005/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/005/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/005/versions.tf -------------------------------------------------------------------------------- /2023/006/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/006/compute.tf -------------------------------------------------------------------------------- /2023/006/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/006/main.tf -------------------------------------------------------------------------------- /2023/006/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/006/network.tf -------------------------------------------------------------------------------- /2023/006/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/006/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/006/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/006/versions.tf -------------------------------------------------------------------------------- /2023/006/vpn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/006/vpn.tf -------------------------------------------------------------------------------- /2023/007/app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/007/app/main.tf -------------------------------------------------------------------------------- /2023/007/app/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/007/app/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/007/app/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/007/app/versions.tf -------------------------------------------------------------------------------- /2023/007/backend/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/007/backend/main.tf -------------------------------------------------------------------------------- /2023/007/backend/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/007/backend/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/007/backend/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/007/backend/versions.tf -------------------------------------------------------------------------------- /2023/008/.azdo-pipelines/scripts/terraform-with-backend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/008/.azdo-pipelines/scripts/terraform-with-backend.sh -------------------------------------------------------------------------------- /2023/008/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/008/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/008/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/008/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/008/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/008/terraform/main.tf -------------------------------------------------------------------------------- /2023/008/terraform/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/008/terraform/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/008/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/008/terraform/versions.tf -------------------------------------------------------------------------------- /2023/009/packer/linux/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/linux/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/009/packer/linux/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/linux/build.pkr.hcl -------------------------------------------------------------------------------- /2023/009/packer/linux/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/linux/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/009/packer/linux/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/linux/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/009/packer/linux/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/linux/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/009/packer/windows/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/windows/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/009/packer/windows/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/windows/build.pkr.hcl -------------------------------------------------------------------------------- /2023/009/packer/windows/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/windows/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/009/packer/windows/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/windows/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/009/packer/windows/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/packer/windows/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/009/terraform/modules/network/bastion/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/network/bastion/bastion.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/network/bastion/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/network/bastion/network.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/network/bastion/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/network/bastion/outputs.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/network/bastion/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/network/bastion/variables.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/network/bastion/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/network/bastion/versions.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/vm/linux/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/vm/linux/main.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/vm/linux/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/vm/linux/variables.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/vm/linux/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/vm/linux/versions.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/vm/windows/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/vm/windows/main.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/vm/windows/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/vm/windows/variables.tf -------------------------------------------------------------------------------- /2023/009/terraform/modules/vm/windows/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/modules/vm/windows/versions.tf -------------------------------------------------------------------------------- /2023/009/terraform/packer-repo/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/packer-repo/main.tf -------------------------------------------------------------------------------- /2023/009/terraform/packer-repo/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/009/terraform/packer-repo/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/009/terraform/packer-repo/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/packer-repo/versions.tf -------------------------------------------------------------------------------- /2023/009/terraform/packer-tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/packer-tester/main.tf -------------------------------------------------------------------------------- /2023/009/terraform/packer-tester/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/009/terraform/packer-tester/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/009/terraform/packer-tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/packer-tester/versions.tf -------------------------------------------------------------------------------- /2023/009/terraform/packer-tester/vm-linux.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/packer-tester/vm-linux.tf -------------------------------------------------------------------------------- /2023/009/terraform/packer-tester/vm-windows.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/009/terraform/packer-tester/vm-windows.tf -------------------------------------------------------------------------------- /2023/010/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/010/main.tf -------------------------------------------------------------------------------- /2023/010/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/010/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/010/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/010/versions.tf -------------------------------------------------------------------------------- /2023/011/packer/linux/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/011/packer/linux/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/011/packer/linux/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/011/packer/linux/build.pkr.hcl -------------------------------------------------------------------------------- /2023/011/packer/linux/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/011/packer/linux/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/011/packer/linux/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/011/packer/linux/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/011/packer/linux/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/011/packer/linux/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/011/packer/linux/variables.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/011/packer/linux/variables.pkrvars.hcl -------------------------------------------------------------------------------- /2023/011/terraform/packer-repo/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/011/terraform/packer-repo/main.tf -------------------------------------------------------------------------------- /2023/011/terraform/packer-repo/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/011/terraform/packer-repo/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/011/terraform/packer-repo/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/011/terraform/packer-repo/versions.tf -------------------------------------------------------------------------------- /2023/012/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/012/README.md -------------------------------------------------------------------------------- /2023/013/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/013/README.md -------------------------------------------------------------------------------- /2023/013/infra-machine-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/013/infra-machine-images/README.md -------------------------------------------------------------------------------- /2023/013/infra-machine-images/terraform/env-dev.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "dev" -------------------------------------------------------------------------------- /2023/013/infra-machine-images/terraform/env-prod.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "prod" -------------------------------------------------------------------------------- /2023/013/infra-machine-images/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/013/infra-machine-images/terraform/main.tf -------------------------------------------------------------------------------- /2023/013/infra-machine-images/terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/013/infra-machine-images/terraform/terraform.tfvars -------------------------------------------------------------------------------- /2023/013/infra-machine-images/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/013/infra-machine-images/terraform/variables.tf -------------------------------------------------------------------------------- /2023/013/infra-machine-images/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/013/infra-machine-images/terraform/versions.tf -------------------------------------------------------------------------------- /2023/014/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/014/infra-machine-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/014/infra-machine-images/README.md -------------------------------------------------------------------------------- /2023/014/infra-machine-images/terraform/env-dev.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "dev" -------------------------------------------------------------------------------- /2023/014/infra-machine-images/terraform/env-prod.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "prod" -------------------------------------------------------------------------------- /2023/014/infra-machine-images/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/014/infra-machine-images/terraform/main.tf -------------------------------------------------------------------------------- /2023/014/infra-machine-images/terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/014/infra-machine-images/terraform/terraform.tfvars -------------------------------------------------------------------------------- /2023/014/infra-machine-images/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/014/infra-machine-images/terraform/variables.tf -------------------------------------------------------------------------------- /2023/014/infra-machine-images/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/014/infra-machine-images/terraform/versions.tf -------------------------------------------------------------------------------- /2023/015/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/016/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/016/packer/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/packer/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/016/packer/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/packer/build.pkr.hcl -------------------------------------------------------------------------------- /2023/016/packer/files/mcbedrock.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/packer/files/mcbedrock.service -------------------------------------------------------------------------------- /2023/016/packer/files/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/packer/files/start_server.sh -------------------------------------------------------------------------------- /2023/016/packer/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/packer/files/stop_server.sh -------------------------------------------------------------------------------- /2023/016/packer/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/packer/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/016/packer/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/packer/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/016/packer/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/packer/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/016/packer/variables.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/packer/variables.pkrvars.hcl -------------------------------------------------------------------------------- /2023/016/terraform/minecraft-tester/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/minecraft-tester/kv.tf -------------------------------------------------------------------------------- /2023/016/terraform/minecraft-tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/minecraft-tester/main.tf -------------------------------------------------------------------------------- /2023/016/terraform/minecraft-tester/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/minecraft-tester/network.tf -------------------------------------------------------------------------------- /2023/016/terraform/minecraft-tester/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/minecraft-tester/ssh.tf -------------------------------------------------------------------------------- /2023/016/terraform/minecraft-tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/minecraft-tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/016/terraform/minecraft-tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/minecraft-tester/variables.tf -------------------------------------------------------------------------------- /2023/016/terraform/minecraft-tester/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/minecraft-tester/verrsions.tf -------------------------------------------------------------------------------- /2023/016/terraform/minecraft-tester/vm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/minecraft-tester/vm.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/network/bastion/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/network/bastion/bastion.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/network/bastion/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/network/bastion/network.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/network/bastion/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/network/bastion/outputs.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/network/bastion/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/network/bastion/variables.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/network/bastion/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/network/bastion/versions.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/linux-private/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/vm/linux-private/main.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/linux-private/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/vm/linux-private/variables.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/linux-private/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/vm/linux-private/versions.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/linux-public/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/vm/linux-public/main.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/linux-public/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/vm/linux-public/variables.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/linux-public/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/vm/linux-public/versions.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/windows-private/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/vm/windows-private/main.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/windows-private/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/vm/windows-private/variables.tf -------------------------------------------------------------------------------- /2023/016/terraform/modules/vm/windows-private/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/016/terraform/modules/vm/windows-private/versions.tf -------------------------------------------------------------------------------- /2023/017/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/017/packer/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/017/packer/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/build.pkr.hcl -------------------------------------------------------------------------------- /2023/017/packer/files/blobfuse-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/files/blobfuse-config.yaml -------------------------------------------------------------------------------- /2023/017/packer/files/mcbedrock.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/files/mcbedrock.service -------------------------------------------------------------------------------- /2023/017/packer/files/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/files/start_server.sh -------------------------------------------------------------------------------- /2023/017/packer/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/files/stop_server.sh -------------------------------------------------------------------------------- /2023/017/packer/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/017/packer/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/017/packer/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/017/packer/variables.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/packer/variables.pkrvars.hcl -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/files/blobfuse-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/files/blobfuse-setup.sh -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/identity.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/identity.tf -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/kv.tf -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/main.tf -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/network.tf -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/ssh.tf -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/storage.tf -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/variables.tf -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/verrsions.tf -------------------------------------------------------------------------------- /2023/017/terraform/minecraft-tester/vm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/minecraft-tester/vm.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/network/bastion/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/network/bastion/bastion.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/network/bastion/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/network/bastion/network.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/network/bastion/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/network/bastion/outputs.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/network/bastion/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/network/bastion/variables.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/network/bastion/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/network/bastion/versions.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/linux-private/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/vm/linux-private/main.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/linux-private/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/vm/linux-private/variables.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/linux-private/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/vm/linux-private/versions.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/linux-public/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/vm/linux-public/main.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/linux-public/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/vm/linux-public/variables.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/linux-public/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/vm/linux-public/versions.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/windows-private/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/vm/windows-private/main.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/windows-private/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/vm/windows-private/variables.tf -------------------------------------------------------------------------------- /2023/017/terraform/modules/vm/windows-private/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/017/terraform/modules/vm/windows-private/versions.tf -------------------------------------------------------------------------------- /2023/018/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/018/packer/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/018/packer/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/build.pkr.hcl -------------------------------------------------------------------------------- /2023/018/packer/files/blobfuse-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/files/blobfuse-config.yaml -------------------------------------------------------------------------------- /2023/018/packer/files/mcbedrock.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/files/mcbedrock.service -------------------------------------------------------------------------------- /2023/018/packer/files/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/files/start_server.sh -------------------------------------------------------------------------------- /2023/018/packer/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/files/stop_server.sh -------------------------------------------------------------------------------- /2023/018/packer/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/018/packer/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/018/packer/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/018/packer/variables.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/packer/variables.pkrvars.hcl -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/files/blobfuse-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/files/blobfuse-setup.sh -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/identity.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/identity.tf -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/kv.tf -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/main.tf -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/network.tf -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/ssh.tf -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/storage.tf -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/variables.tf -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/verrsions.tf -------------------------------------------------------------------------------- /2023/018/terraform/minecraft-tester/vm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/minecraft-tester/vm.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/network/bastion/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/network/bastion/bastion.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/network/bastion/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/network/bastion/network.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/network/bastion/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/network/bastion/outputs.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/network/bastion/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/network/bastion/variables.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/network/bastion/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/network/bastion/versions.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/linux-private/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/vm/linux-private/main.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/linux-private/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/vm/linux-private/variables.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/linux-private/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/vm/linux-private/versions.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/linux-public/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/vm/linux-public/main.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/linux-public/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/vm/linux-public/variables.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/linux-public/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/vm/linux-public/versions.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/windows-private/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/vm/windows-private/main.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/windows-private/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/vm/windows-private/variables.tf -------------------------------------------------------------------------------- /2023/018/terraform/modules/vm/windows-private/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/018/terraform/modules/vm/windows-private/versions.tf -------------------------------------------------------------------------------- /2023/019/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/019/infra-machine-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/019/infra-machine-images/README.md -------------------------------------------------------------------------------- /2023/019/infra-machine-images/terraform/env-dev.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "dev" -------------------------------------------------------------------------------- /2023/019/infra-machine-images/terraform/env-prod.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "prod" -------------------------------------------------------------------------------- /2023/019/infra-machine-images/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/019/infra-machine-images/terraform/main.tf -------------------------------------------------------------------------------- /2023/019/infra-machine-images/terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/019/infra-machine-images/terraform/terraform.tfvars -------------------------------------------------------------------------------- /2023/019/infra-machine-images/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/019/infra-machine-images/terraform/variables.tf -------------------------------------------------------------------------------- /2023/019/infra-machine-images/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/019/infra-machine-images/terraform/versions.tf -------------------------------------------------------------------------------- /2023/020/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/021/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/021/minecraft/.azdo-pipelines/packer-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/.azdo-pipelines/packer-build.yaml -------------------------------------------------------------------------------- /2023/021/minecraft/.azdo-pipelines/scripts/packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/.azdo-pipelines/scripts/packer.sh -------------------------------------------------------------------------------- /2023/021/minecraft/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/021/minecraft/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/021/minecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/README.md -------------------------------------------------------------------------------- /2023/021/minecraft/packer/blob-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/blob-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/blob-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/blob-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/blob-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/blob-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/blob-storage/env-prod.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/blob-storage/env-prod.pkrvars.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/blob-storage/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/blob-storage/files/stop_server.sh -------------------------------------------------------------------------------- /2023/021/minecraft/packer/blob-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/blob-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/blob-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/blob-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/blob-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/blob-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/local-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/local-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/local-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/local-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/local-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/local-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/local-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/local-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/local-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/local-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/packer/local-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/packer/local-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/v1/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/v1/env-dev.tfvars -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/v1/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/v1/env-prod.tfvars -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/v1/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/v1/kv.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/v1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/v1/main.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/v1/minecraft.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/v1/minecraft.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/v1/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/v1/network.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/v1/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/v1/ssh.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/v1/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/v1/variables.tf -------------------------------------------------------------------------------- /2023/021/minecraft/terraform/v1/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/021/minecraft/terraform/v1/verrsions.tf -------------------------------------------------------------------------------- /2023/022/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/023/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/023/minecraft/.azdo-pipelines/packer-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/.azdo-pipelines/packer-build.yaml -------------------------------------------------------------------------------- /2023/023/minecraft/.azdo-pipelines/scripts/packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/.azdo-pipelines/scripts/packer.sh -------------------------------------------------------------------------------- /2023/023/minecraft/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/023/minecraft/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/023/minecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/README.md -------------------------------------------------------------------------------- /2023/023/minecraft/packer/blob-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/blob-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/blob-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/blob-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/blob-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/blob-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/blob-storage/env-prod.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/blob-storage/env-prod.pkrvars.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/blob-storage/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/blob-storage/files/stop_server.sh -------------------------------------------------------------------------------- /2023/023/minecraft/packer/blob-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/blob-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/blob-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/blob-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/blob-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/blob-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/local-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/local-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/local-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/local-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/local-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/local-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/local-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/local-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/local-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/local-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/packer/local-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/packer/local-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/v1/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/v1/env-dev.tfvars -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/v1/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/v1/env-prod.tfvars -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/v1/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/v1/kv.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/v1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/v1/main.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/v1/minecraft.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/v1/minecraft.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/v1/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/v1/network.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/v1/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/v1/ssh.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/v1/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/v1/variables.tf -------------------------------------------------------------------------------- /2023/023/minecraft/terraform/v1/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/023/minecraft/terraform/v1/verrsions.tf -------------------------------------------------------------------------------- /2023/024/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/024/minecraft/.azdo-pipelines/packer-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/.azdo-pipelines/packer-build.yaml -------------------------------------------------------------------------------- /2023/024/minecraft/.azdo-pipelines/scripts/packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/.azdo-pipelines/scripts/packer.sh -------------------------------------------------------------------------------- /2023/024/minecraft/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/024/minecraft/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/024/minecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/README.md -------------------------------------------------------------------------------- /2023/024/minecraft/packer/blob-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/blob-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/blob-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/blob-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/blob-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/blob-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/blob-storage/env-prod.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/blob-storage/env-prod.pkrvars.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/blob-storage/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/blob-storage/files/stop_server.sh -------------------------------------------------------------------------------- /2023/024/minecraft/packer/blob-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/blob-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/blob-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/blob-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/blob-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/blob-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/local-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/local-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/local-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/local-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/local-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/local-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/local-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/local-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/local-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/local-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/packer/local-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/packer/local-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/v1/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/v1/env-dev.tfvars -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/v1/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/v1/env-prod.tfvars -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/v1/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/v1/kv.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/v1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/v1/main.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/v1/minecraft.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/v1/minecraft.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/v1/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/v1/network.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/v1/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/v1/ssh.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/v1/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/v1/variables.tf -------------------------------------------------------------------------------- /2023/024/minecraft/terraform/v1/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/024/minecraft/terraform/v1/verrsions.tf -------------------------------------------------------------------------------- /2023/025/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/025/minecraft/.azdo-pipelines/packer-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/.azdo-pipelines/packer-build.yaml -------------------------------------------------------------------------------- /2023/025/minecraft/.azdo-pipelines/scripts/packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/.azdo-pipelines/scripts/packer.sh -------------------------------------------------------------------------------- /2023/025/minecraft/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/025/minecraft/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/025/minecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/README.md -------------------------------------------------------------------------------- /2023/025/minecraft/packer/blob-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/blob-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/blob-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/blob-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/blob-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/blob-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/blob-storage/env-prod.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/blob-storage/env-prod.pkrvars.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/blob-storage/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/blob-storage/files/stop_server.sh -------------------------------------------------------------------------------- /2023/025/minecraft/packer/blob-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/blob-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/blob-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/blob-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/blob-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/blob-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/local-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/local-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/local-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/local-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/local-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/local-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/local-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/local-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/local-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/local-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/packer/local-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/packer/local-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/v1/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/v1/env-dev.tfvars -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/v1/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/v1/env-prod.tfvars -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/v1/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/v1/kv.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/v1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/v1/main.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/v1/minecraft.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/v1/minecraft.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/v1/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/v1/network.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/v1/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/v1/ssh.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/v1/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/v1/variables.tf -------------------------------------------------------------------------------- /2023/025/minecraft/terraform/v1/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/025/minecraft/terraform/v1/verrsions.tf -------------------------------------------------------------------------------- /2023/026/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/026/minecraft/.azdo-pipelines/packer-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/.azdo-pipelines/packer-build.yaml -------------------------------------------------------------------------------- /2023/026/minecraft/.azdo-pipelines/scripts/packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/.azdo-pipelines/scripts/packer.sh -------------------------------------------------------------------------------- /2023/026/minecraft/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/026/minecraft/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/026/minecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/README.md -------------------------------------------------------------------------------- /2023/026/minecraft/packer/blob-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/blob-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/blob-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/blob-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/blob-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/blob-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/blob-storage/env-prod.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/blob-storage/env-prod.pkrvars.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/blob-storage/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/blob-storage/files/stop_server.sh -------------------------------------------------------------------------------- /2023/026/minecraft/packer/blob-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/blob-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/blob-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/blob-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/blob-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/blob-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/local-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/local-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/local-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/local-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/local-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/local-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/local-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/local-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/local-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/local-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/packer/local-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/packer/local-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/v1/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/v1/env-dev.tfvars -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/v1/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/v1/env-prod.tfvars -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/v1/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/v1/kv.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/v1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/v1/main.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/v1/minecraft.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/v1/minecraft.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/v1/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/v1/network.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/v1/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/v1/ssh.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/v1/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/v1/variables.tf -------------------------------------------------------------------------------- /2023/026/minecraft/terraform/v1/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/026/minecraft/terraform/v1/verrsions.tf -------------------------------------------------------------------------------- /2023/027/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/027/minecraft/.azdo-pipelines/packer-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/.azdo-pipelines/packer-build.yaml -------------------------------------------------------------------------------- /2023/027/minecraft/.azdo-pipelines/scripts/packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/.azdo-pipelines/scripts/packer.sh -------------------------------------------------------------------------------- /2023/027/minecraft/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/027/minecraft/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/027/minecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/README.md -------------------------------------------------------------------------------- /2023/027/minecraft/packer/blob-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/blob-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/blob-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/blob-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/blob-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/blob-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/blob-storage/env-prod.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/blob-storage/env-prod.pkrvars.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/blob-storage/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/blob-storage/files/stop_server.sh -------------------------------------------------------------------------------- /2023/027/minecraft/packer/blob-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/blob-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/blob-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/blob-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/blob-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/blob-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/local-storage/aws.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/local-storage/aws.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/local-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/local-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/local-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/local-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/local-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/local-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/local-storage/gcp.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/local-storage/gcp.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/local-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/local-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/local-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/local-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/packer/local-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/packer/local-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/v1/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/v1/env-dev.tfvars -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/v1/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/v1/env-prod.tfvars -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/v1/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/v1/kv.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/v1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/v1/main.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/v1/minecraft.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/v1/minecraft.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/v1/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/v1/network.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/v1/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/v1/ssh.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/v1/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/v1/variables.tf -------------------------------------------------------------------------------- /2023/027/minecraft/terraform/v1/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/027/minecraft/terraform/v1/verrsions.tf -------------------------------------------------------------------------------- /2023/028/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/028/minecraft/.azdo-pipelines/packer-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/.azdo-pipelines/packer-build.yaml -------------------------------------------------------------------------------- /2023/028/minecraft/.azdo-pipelines/scripts/packer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/.azdo-pipelines/scripts/packer.sh -------------------------------------------------------------------------------- /2023/028/minecraft/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/028/minecraft/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/028/minecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/README.md -------------------------------------------------------------------------------- /2023/028/minecraft/packer/blob-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/blob-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/blob-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/blob-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/blob-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/blob-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/blob-storage/env-prod.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/blob-storage/env-prod.pkrvars.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/blob-storage/files/stop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/blob-storage/files/stop_server.sh -------------------------------------------------------------------------------- /2023/028/minecraft/packer/blob-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/blob-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/blob-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/blob-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/blob-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/blob-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/local-storage/aws.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/local-storage/aws.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/local-storage/azure.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/local-storage/azure.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/local-storage/build.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/local-storage/build.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/local-storage/env-dev.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/local-storage/env-dev.pkrvars.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/local-storage/gcp.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/local-storage/gcp.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/local-storage/locals.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/local-storage/locals.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/local-storage/plugins.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/local-storage/plugins.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/packer/local-storage/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/packer/local-storage/variables.pkr.hcl -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/modules/kv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/modules/kv/main.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/modules/kv/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/modules/kv/outputs.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/modules/kv/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/modules/kv/variables.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/modules/kv/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/modules/kv/versions.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/modules/vm/linux-public/outputs.tf: -------------------------------------------------------------------------------- 1 | output id { 2 | value = azurerm_linux_virtual_machine.main.id 3 | } -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/v1/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/v1/env-dev.tfvars -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/v1/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/v1/env-prod.tfvars -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/v1/kv.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/v1/kv.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/v1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/v1/main.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/v1/minecraft.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/v1/minecraft.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/v1/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/v1/network.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/v1/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/v1/ssh.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/v1/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/v1/variables.tf -------------------------------------------------------------------------------- /2023/028/minecraft/terraform/v1/verrsions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/028/minecraft/terraform/v1/verrsions.tf -------------------------------------------------------------------------------- /2023/029/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/029/infra-observability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/029/infra-observability/README.md -------------------------------------------------------------------------------- /2023/029/infra-observability/terraform/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/029/infra-observability/terraform/env-dev.tfvars -------------------------------------------------------------------------------- /2023/029/infra-observability/terraform/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/029/infra-observability/terraform/env-prod.tfvars -------------------------------------------------------------------------------- /2023/029/infra-observability/terraform/log-analytics.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/029/infra-observability/terraform/log-analytics.tf -------------------------------------------------------------------------------- /2023/029/infra-observability/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/029/infra-observability/terraform/main.tf -------------------------------------------------------------------------------- /2023/029/infra-observability/terraform/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/029/infra-observability/terraform/storage.tf -------------------------------------------------------------------------------- /2023/029/infra-observability/terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/029/infra-observability/terraform/terraform.tfvars -------------------------------------------------------------------------------- /2023/029/infra-observability/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/029/infra-observability/terraform/variables.tf -------------------------------------------------------------------------------- /2023/029/infra-observability/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/029/infra-observability/terraform/versions.tf -------------------------------------------------------------------------------- /2023/030/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/030/infra-devops/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/030/infra-devops/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/030/infra-devops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/README.md -------------------------------------------------------------------------------- /2023/030/infra-devops/terraform/access-control.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/terraform/access-control.tf -------------------------------------------------------------------------------- /2023/030/infra-devops/terraform/env-dev.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "dev" -------------------------------------------------------------------------------- /2023/030/infra-devops/terraform/env-prod.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "prod" -------------------------------------------------------------------------------- /2023/030/infra-devops/terraform/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/terraform/keyvault.tf -------------------------------------------------------------------------------- /2023/030/infra-devops/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/terraform/main.tf -------------------------------------------------------------------------------- /2023/030/infra-devops/terraform/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/terraform/ssh.tf -------------------------------------------------------------------------------- /2023/030/infra-devops/terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/terraform/terraform.tfvars -------------------------------------------------------------------------------- /2023/030/infra-devops/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/terraform/variables.tf -------------------------------------------------------------------------------- /2023/030/infra-devops/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/030/infra-devops/terraform/versions.tf -------------------------------------------------------------------------------- /2023/031/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/031/infra-devops/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/031/infra-devops/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/031/infra-devops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/README.md -------------------------------------------------------------------------------- /2023/031/infra-devops/terraform/access-control.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/terraform/access-control.tf -------------------------------------------------------------------------------- /2023/031/infra-devops/terraform/env-dev.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "dev" -------------------------------------------------------------------------------- /2023/031/infra-devops/terraform/env-prod.tfvars: -------------------------------------------------------------------------------- 1 | environment_name = "prod" -------------------------------------------------------------------------------- /2023/031/infra-devops/terraform/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/terraform/keyvault.tf -------------------------------------------------------------------------------- /2023/031/infra-devops/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/terraform/main.tf -------------------------------------------------------------------------------- /2023/031/infra-devops/terraform/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/terraform/ssh.tf -------------------------------------------------------------------------------- /2023/031/infra-devops/terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/terraform/terraform.tfvars -------------------------------------------------------------------------------- /2023/031/infra-devops/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/terraform/variables.tf -------------------------------------------------------------------------------- /2023/031/infra-devops/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/031/infra-devops/terraform/versions.tf -------------------------------------------------------------------------------- /2023/032/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/032/infra-devops/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/032/infra-devops/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/032/infra-devops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/README.md -------------------------------------------------------------------------------- /2023/032/infra-devops/terraform/access-control.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/terraform/access-control.tf -------------------------------------------------------------------------------- /2023/032/infra-devops/terraform/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/terraform/env-dev.tfvars -------------------------------------------------------------------------------- /2023/032/infra-devops/terraform/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/terraform/env-prod.tfvars -------------------------------------------------------------------------------- /2023/032/infra-devops/terraform/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/terraform/keyvault.tf -------------------------------------------------------------------------------- /2023/032/infra-devops/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/terraform/main.tf -------------------------------------------------------------------------------- /2023/032/infra-devops/terraform/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/terraform/ssh.tf -------------------------------------------------------------------------------- /2023/032/infra-devops/terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/terraform/terraform.tfvars -------------------------------------------------------------------------------- /2023/032/infra-devops/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/terraform/variables.tf -------------------------------------------------------------------------------- /2023/032/infra-devops/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/032/infra-devops/terraform/versions.tf -------------------------------------------------------------------------------- /2023/033/README.md: -------------------------------------------------------------------------------- 1 | FOO 2 | 3 | In this episode, we did the following: 4 | 5 | 1. TODO -------------------------------------------------------------------------------- /2023/033/infra-devops/.azdo-pipelines/terraform-apply.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/.azdo-pipelines/terraform-apply.yaml -------------------------------------------------------------------------------- /2023/033/infra-devops/.azdo-pipelines/terraform-plan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/.azdo-pipelines/terraform-plan.yaml -------------------------------------------------------------------------------- /2023/033/infra-devops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/README.md -------------------------------------------------------------------------------- /2023/033/infra-devops/terraform/access-control.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/terraform/access-control.tf -------------------------------------------------------------------------------- /2023/033/infra-devops/terraform/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/terraform/env-dev.tfvars -------------------------------------------------------------------------------- /2023/033/infra-devops/terraform/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/terraform/env-prod.tfvars -------------------------------------------------------------------------------- /2023/033/infra-devops/terraform/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/terraform/keyvault.tf -------------------------------------------------------------------------------- /2023/033/infra-devops/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/terraform/main.tf -------------------------------------------------------------------------------- /2023/033/infra-devops/terraform/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/terraform/ssh.tf -------------------------------------------------------------------------------- /2023/033/infra-devops/terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/terraform/terraform.tfvars -------------------------------------------------------------------------------- /2023/033/infra-devops/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/terraform/variables.tf -------------------------------------------------------------------------------- /2023/033/infra-devops/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/033/infra-devops/terraform/versions.tf -------------------------------------------------------------------------------- /2023/034/azdo-tls/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/034/azdo-tls/main.tf -------------------------------------------------------------------------------- /2023/034/infrastructure/infra-devops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/034/infrastructure/infra-devops/README.md -------------------------------------------------------------------------------- /2023/034/infrastructure/infra-devops/terraform/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/034/infrastructure/infra-devops/terraform/keyvault.tf -------------------------------------------------------------------------------- /2023/034/infrastructure/infra-devops/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/034/infrastructure/infra-devops/terraform/main.tf -------------------------------------------------------------------------------- /2023/034/infrastructure/infra-devops/terraform/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/034/infrastructure/infra-devops/terraform/ssh.tf -------------------------------------------------------------------------------- /2023/034/infrastructure/infra-devops/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/034/infrastructure/infra-devops/terraform/variables.tf -------------------------------------------------------------------------------- /2023/034/infrastructure/infra-devops/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/034/infrastructure/infra-devops/terraform/versions.tf -------------------------------------------------------------------------------- /2023/034/infrastructure/terraform-modules/rando/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/034/infrastructure/terraform-modules/rando/main.tf -------------------------------------------------------------------------------- /2023/034/infrastructure/terraform-modules/rando/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/034/infrastructure/terraform-modules/rando/outputs.tf -------------------------------------------------------------------------------- /2023/035/infrastructure/infra-devops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/035/infrastructure/infra-devops/README.md -------------------------------------------------------------------------------- /2023/035/infrastructure/infra-devops/terraform/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/035/infrastructure/infra-devops/terraform/keyvault.tf -------------------------------------------------------------------------------- /2023/035/infrastructure/infra-devops/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/035/infrastructure/infra-devops/terraform/main.tf -------------------------------------------------------------------------------- /2023/035/infrastructure/infra-devops/terraform/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/035/infrastructure/infra-devops/terraform/ssh.tf -------------------------------------------------------------------------------- /2023/035/infrastructure/infra-devops/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/035/infrastructure/infra-devops/terraform/variables.tf -------------------------------------------------------------------------------- /2023/035/infrastructure/infra-devops/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/035/infrastructure/infra-devops/terraform/versions.tf -------------------------------------------------------------------------------- /2023/035/infrastructure/terraform-modules/README.md: -------------------------------------------------------------------------------- 1 | # Terraform Modules -------------------------------------------------------------------------------- /2023/035/infrastructure/terraform-modules/rando/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/035/infrastructure/terraform-modules/rando/main.tf -------------------------------------------------------------------------------- /2023/035/infrastructure/terraform-modules/rando/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/035/infrastructure/terraform-modules/rando/outputs.tf -------------------------------------------------------------------------------- /2023/036/modules/network/bastion/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/036/modules/network/bastion/bastion.tf -------------------------------------------------------------------------------- /2023/036/modules/network/bastion/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/036/modules/network/bastion/network.tf -------------------------------------------------------------------------------- /2023/036/modules/network/bastion/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/036/modules/network/bastion/outputs.tf -------------------------------------------------------------------------------- /2023/036/modules/network/bastion/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/036/modules/network/bastion/variables.tf -------------------------------------------------------------------------------- /2023/036/modules/network/bastion/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/036/modules/network/bastion/versions.tf -------------------------------------------------------------------------------- /2023/036/tester/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/036/tester/compute.tf -------------------------------------------------------------------------------- /2023/036/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/036/tester/main.tf -------------------------------------------------------------------------------- /2023/036/tester/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "West US" -------------------------------------------------------------------------------- /2023/036/tester/variables.tf: -------------------------------------------------------------------------------- 1 | variable location { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/036/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/036/tester/versions.tf -------------------------------------------------------------------------------- /2023/037/modules/network/bastion/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/modules/network/bastion/bastion.tf -------------------------------------------------------------------------------- /2023/037/modules/network/bastion/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/modules/network/bastion/network.tf -------------------------------------------------------------------------------- /2023/037/modules/network/bastion/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/modules/network/bastion/outputs.tf -------------------------------------------------------------------------------- /2023/037/modules/network/bastion/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/modules/network/bastion/variables.tf -------------------------------------------------------------------------------- /2023/037/modules/network/bastion/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/modules/network/bastion/versions.tf -------------------------------------------------------------------------------- /2023/037/tester/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/tester/compute.tf -------------------------------------------------------------------------------- /2023/037/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/tester/main.tf -------------------------------------------------------------------------------- /2023/037/tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/037/tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/tester/variables.tf -------------------------------------------------------------------------------- /2023/037/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/037/tester/versions.tf -------------------------------------------------------------------------------- /2023/038/azdo/terraform-modules/README.md: -------------------------------------------------------------------------------- 1 | # Terraform Modules -------------------------------------------------------------------------------- /2023/038/azdo/terraform-modules/rando/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/azdo/terraform-modules/rando/main.tf -------------------------------------------------------------------------------- /2023/038/azdo/terraform-modules/rando/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/azdo/terraform-modules/rando/outputs.tf -------------------------------------------------------------------------------- /2023/038/modules/network/bastion/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/modules/network/bastion/bastion.tf -------------------------------------------------------------------------------- /2023/038/modules/network/bastion/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/modules/network/bastion/network.tf -------------------------------------------------------------------------------- /2023/038/modules/network/bastion/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/modules/network/bastion/outputs.tf -------------------------------------------------------------------------------- /2023/038/modules/network/bastion/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/modules/network/bastion/variables.tf -------------------------------------------------------------------------------- /2023/038/modules/network/bastion/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/modules/network/bastion/versions.tf -------------------------------------------------------------------------------- /2023/038/tester/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/tester/compute.tf -------------------------------------------------------------------------------- /2023/038/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/tester/main.tf -------------------------------------------------------------------------------- /2023/038/tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/038/tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/tester/variables.tf -------------------------------------------------------------------------------- /2023/038/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/038/tester/versions.tf -------------------------------------------------------------------------------- /2023/039/azdo/infra-observability/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2023/039/azdo/infra-observability/terraform/env-dev.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/azdo/infra-observability/terraform/env-dev.tfvars -------------------------------------------------------------------------------- /2023/039/azdo/infra-observability/terraform/env-prod.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/azdo/infra-observability/terraform/env-prod.tfvars -------------------------------------------------------------------------------- /2023/039/azdo/infra-observability/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/azdo/infra-observability/terraform/main.tf -------------------------------------------------------------------------------- /2023/039/azdo/infra-observability/terraform/monitor.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/azdo/infra-observability/terraform/monitor.tf -------------------------------------------------------------------------------- /2023/039/azdo/infra-observability/terraform/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/azdo/infra-observability/terraform/storage.tf -------------------------------------------------------------------------------- /2023/039/azdo/infra-observability/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/azdo/infra-observability/terraform/variables.tf -------------------------------------------------------------------------------- /2023/039/azdo/infra-observability/terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/azdo/infra-observability/terraform/versions.tf -------------------------------------------------------------------------------- /2023/039/azdo/terraform-modules/README.md: -------------------------------------------------------------------------------- 1 | # Terraform Modules -------------------------------------------------------------------------------- /2023/039/azdo/terraform-modules/rando/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/azdo/terraform-modules/rando/main.tf -------------------------------------------------------------------------------- /2023/039/azdo/terraform-modules/rando/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/azdo/terraform-modules/rando/outputs.tf -------------------------------------------------------------------------------- /2023/039/modules/network/bastion/bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/modules/network/bastion/bastion.tf -------------------------------------------------------------------------------- /2023/039/modules/network/bastion/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/modules/network/bastion/network.tf -------------------------------------------------------------------------------- /2023/039/modules/network/bastion/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/modules/network/bastion/outputs.tf -------------------------------------------------------------------------------- /2023/039/modules/network/bastion/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/modules/network/bastion/variables.tf -------------------------------------------------------------------------------- /2023/039/modules/network/bastion/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/modules/network/bastion/versions.tf -------------------------------------------------------------------------------- /2023/039/tester/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/tester/compute.tf -------------------------------------------------------------------------------- /2023/039/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/tester/main.tf -------------------------------------------------------------------------------- /2023/039/tester/monitor.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/tester/monitor.tf -------------------------------------------------------------------------------- /2023/039/tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/039/tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/tester/variables.tf -------------------------------------------------------------------------------- /2023/039/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/039/tester/versions.tf -------------------------------------------------------------------------------- /2023/040/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/040/tester/main.tf -------------------------------------------------------------------------------- /2023/040/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/040/tester/versions.tf -------------------------------------------------------------------------------- /2023/041/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/041/tester/main.tf -------------------------------------------------------------------------------- /2023/041/tester/pipeline.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/041/tester/pipeline.tf -------------------------------------------------------------------------------- /2023/041/tester/variable-group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/041/tester/variable-group.tf -------------------------------------------------------------------------------- /2023/041/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/041/tester/versions.tf -------------------------------------------------------------------------------- /2023/042/tester/environments.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/042/tester/environments.tf -------------------------------------------------------------------------------- /2023/042/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/042/tester/main.tf -------------------------------------------------------------------------------- /2023/042/tester/pipeline.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/042/tester/pipeline.tf -------------------------------------------------------------------------------- /2023/042/tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/042/tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/042/tester/variable-group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/042/tester/variable-group.tf -------------------------------------------------------------------------------- /2023/042/tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/042/tester/variables.tf -------------------------------------------------------------------------------- /2023/042/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/042/tester/versions.tf -------------------------------------------------------------------------------- /2023/043/tester/build-validation.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/043/tester/build-validation.tf -------------------------------------------------------------------------------- /2023/043/tester/environments.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/043/tester/environments.tf -------------------------------------------------------------------------------- /2023/043/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/043/tester/main.tf -------------------------------------------------------------------------------- /2023/043/tester/pipeline-apply.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/043/tester/pipeline-apply.tf -------------------------------------------------------------------------------- /2023/043/tester/pipeline-plan.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/043/tester/pipeline-plan.tf -------------------------------------------------------------------------------- /2023/043/tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/043/tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/043/tester/variable-group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/043/tester/variable-group.tf -------------------------------------------------------------------------------- /2023/043/tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/043/tester/variables.tf -------------------------------------------------------------------------------- /2023/043/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/043/tester/versions.tf -------------------------------------------------------------------------------- /2023/044/tester/branch-policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/branch-policy.tf -------------------------------------------------------------------------------- /2023/044/tester/build-validation.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/build-validation.tf -------------------------------------------------------------------------------- /2023/044/tester/environments.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/environments.tf -------------------------------------------------------------------------------- /2023/044/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/main.tf -------------------------------------------------------------------------------- /2023/044/tester/pipeline-apply.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/pipeline-apply.tf -------------------------------------------------------------------------------- /2023/044/tester/pipeline-plan.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/pipeline-plan.tf -------------------------------------------------------------------------------- /2023/044/tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/044/tester/variable-group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/variable-group.tf -------------------------------------------------------------------------------- /2023/044/tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/variables.tf -------------------------------------------------------------------------------- /2023/044/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/044/tester/versions.tf -------------------------------------------------------------------------------- /2023/045/tester/fn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/045/tester/fn.tf -------------------------------------------------------------------------------- /2023/045/tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/045/tester/main.tf -------------------------------------------------------------------------------- /2023/045/tester/plan-consumable.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/045/tester/plan-consumable.tf -------------------------------------------------------------------------------- /2023/045/tester/plan-premium.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/045/tester/plan-premium.tf -------------------------------------------------------------------------------- /2023/045/tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/045/tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/045/tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/045/tester/variables.tf -------------------------------------------------------------------------------- /2023/045/tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/045/tester/versions.tf -------------------------------------------------------------------------------- /2023/047/azure-tester/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2023/047/azure-tester/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/047/azure-tester/compute.tf -------------------------------------------------------------------------------- /2023/047/azure-tester/gateway.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/047/azure-tester/gateway.tf -------------------------------------------------------------------------------- /2023/047/azure-tester/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/047/azure-tester/main.tf -------------------------------------------------------------------------------- /2023/047/azure-tester/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/047/azure-tester/network.tf -------------------------------------------------------------------------------- /2023/047/azure-tester/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/047/azure-tester/outputs.tf -------------------------------------------------------------------------------- /2023/047/azure-tester/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/047/azure-tester/terraform.tfvars -------------------------------------------------------------------------------- /2023/047/azure-tester/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/047/azure-tester/variables.tf -------------------------------------------------------------------------------- /2023/047/azure-tester/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/047/azure-tester/versions.tf -------------------------------------------------------------------------------- /2023/050/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/050/main.tf -------------------------------------------------------------------------------- /2023/050/terraform.tfvars: -------------------------------------------------------------------------------- 1 | application_name = "infra-network" -------------------------------------------------------------------------------- /2023/050/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/050/variables.tf -------------------------------------------------------------------------------- /2023/050/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/050/versions.tf -------------------------------------------------------------------------------- /2023/076/acr.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/076/acr.tf -------------------------------------------------------------------------------- /2023/076/logs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/076/logs.tf -------------------------------------------------------------------------------- /2023/076/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/076/main.tf -------------------------------------------------------------------------------- /2023/076/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "westus3" -------------------------------------------------------------------------------- /2023/076/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/076/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/076/versions.tf -------------------------------------------------------------------------------- /2023/078/expected.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/078/expected.tfvars -------------------------------------------------------------------------------- /2023/078/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/078/main.tf -------------------------------------------------------------------------------- /2023/078/zscalar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/078/zscalar.json -------------------------------------------------------------------------------- /2023/082/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/082/main.tf -------------------------------------------------------------------------------- /2023/082/terraform.tfvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2023/082/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/082/versions.tf -------------------------------------------------------------------------------- /2023/083/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/083/main.tf -------------------------------------------------------------------------------- /2023/083/terraform.tfvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2023/083/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/083/versions.tf -------------------------------------------------------------------------------- /2023/084/bulk_user_import.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/084/bulk_user_import.tf -------------------------------------------------------------------------------- /2023/084/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/084/main.tf -------------------------------------------------------------------------------- /2023/084/terraform.tfvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2023/084/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/084/users.json -------------------------------------------------------------------------------- /2023/084/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2023/084/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/084/versions.tf -------------------------------------------------------------------------------- /2023/085/group-admin.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/085/group-admin.tf -------------------------------------------------------------------------------- /2023/085/group-reader.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/085/group-reader.tf -------------------------------------------------------------------------------- /2023/085/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/085/main.tf -------------------------------------------------------------------------------- /2023/085/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/085/terraform.tfvars -------------------------------------------------------------------------------- /2023/085/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/085/variables.tf -------------------------------------------------------------------------------- /2023/085/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/085/versions.tf -------------------------------------------------------------------------------- /2023/086/README.md: -------------------------------------------------------------------------------- 1 | Objectives: 2 | 3 | 1. Remove GUIDs!!! (use data sources) 4 | 5 | -------------------------------------------------------------------------------- /2023/086/group-admin.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/086/group-admin.tf -------------------------------------------------------------------------------- /2023/086/group-reader.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/086/group-reader.tf -------------------------------------------------------------------------------- /2023/086/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/086/main.tf -------------------------------------------------------------------------------- /2023/086/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/086/terraform.tfvars -------------------------------------------------------------------------------- /2023/086/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/086/variables.tf -------------------------------------------------------------------------------- /2023/086/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/086/versions.tf -------------------------------------------------------------------------------- /2023/087/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/087/main.tf -------------------------------------------------------------------------------- /2023/087/modules/group-with-members/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/087/modules/group-with-members/main.tf -------------------------------------------------------------------------------- /2023/087/modules/group-with-members/owners.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/087/modules/group-with-members/owners.tf -------------------------------------------------------------------------------- /2023/087/modules/group-with-members/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/087/modules/group-with-members/variables.tf -------------------------------------------------------------------------------- /2023/087/modules/group-with-members/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/087/modules/group-with-members/versions.tf -------------------------------------------------------------------------------- /2023/087/terraform.tfvars: -------------------------------------------------------------------------------- 1 | group_owners = [ 2 | "mark@tinderholt.net" 3 | ] -------------------------------------------------------------------------------- /2023/087/variables.tf: -------------------------------------------------------------------------------- 1 | variable "group_owners" { 2 | type = list(string) 3 | } -------------------------------------------------------------------------------- /2023/087/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/087/versions.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/clients/client1/client1.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/clients/client1/client1.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/clients/client2/client2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/clients/client2/client2.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/clients/shared/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/clients/shared/main.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/clients/shared/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/clients/shared/outputs.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/main/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/main/main.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/main/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/main/outputs.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/main/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/main/variables.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/modules/app-service/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/modules/app-service/main.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/modules/key-vault/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/modules/key-vault/main.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/modules/key-vault/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/modules/key-vault/outputs.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/modules/sql-db/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/modules/sql-db/main.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/modules/sql-db/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/modules/sql-db/outputs.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/modules/sql-db/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/modules/sql-db/variables.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/shared/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/shared/main.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/shared/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/shared/outputs.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/original/shared/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/code-reviews/003/original/shared/variables.tf -------------------------------------------------------------------------------- /2023/code-reviews/003/refactored/terraform/client-infra/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2023/code-reviews/003/refactored/terraform/shared-infra/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2023/labs/openai/ep001/template-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/labs/openai/ep001/template-parameters.json -------------------------------------------------------------------------------- /2023/labs/openai/ep001/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/labs/openai/ep001/template.json -------------------------------------------------------------------------------- /2023/labs/openai/ep002/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/labs/openai/ep002/main.tf -------------------------------------------------------------------------------- /2023/labs/openai/ep002/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/labs/openai/ep002/versions.tf -------------------------------------------------------------------------------- /2023/labs/openai/ep003/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/labs/openai/ep003/main.tf -------------------------------------------------------------------------------- /2023/labs/openai/ep003/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/labs/openai/ep003/versions.tf -------------------------------------------------------------------------------- /2023/mail-bag/007/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/mail-bag/007/main.tf -------------------------------------------------------------------------------- /2023/mail-bag/007/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/mail-bag/007/outputs.tf -------------------------------------------------------------------------------- /2023/mail-bag/007/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/mail-bag/007/terraform.tfvars -------------------------------------------------------------------------------- /2023/mail-bag/007/variables.tf: -------------------------------------------------------------------------------- 1 | variable resource_name { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2023/mail-bag/007/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2023/mail-bag/007/versions.tf -------------------------------------------------------------------------------- /2024/100/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/100/compute.tf -------------------------------------------------------------------------------- /2024/100/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/100/keyvault.tf -------------------------------------------------------------------------------- /2024/100/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/100/main.tf -------------------------------------------------------------------------------- /2024/100/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/100/network.tf -------------------------------------------------------------------------------- /2024/100/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/100/outputs.tf -------------------------------------------------------------------------------- /2024/100/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/100/ssh.tf -------------------------------------------------------------------------------- /2024/100/terraform.tfvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2024/100/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2024/100/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/100/versions.tf -------------------------------------------------------------------------------- /2024/101/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/101/compute.tf -------------------------------------------------------------------------------- /2024/101/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/101/keyvault.tf -------------------------------------------------------------------------------- /2024/101/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/101/main.tf -------------------------------------------------------------------------------- /2024/101/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/101/network.tf -------------------------------------------------------------------------------- /2024/101/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/101/outputs.tf -------------------------------------------------------------------------------- /2024/101/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/101/ssh.tf -------------------------------------------------------------------------------- /2024/101/terraform.tfvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2024/101/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2024/101/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/101/versions.tf -------------------------------------------------------------------------------- /2024/102/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/102/compute.tf -------------------------------------------------------------------------------- /2024/102/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/102/keyvault.tf -------------------------------------------------------------------------------- /2024/102/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/102/main.tf -------------------------------------------------------------------------------- /2024/102/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/102/network.tf -------------------------------------------------------------------------------- /2024/102/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/102/outputs.tf -------------------------------------------------------------------------------- /2024/102/ssh.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/102/ssh.tf -------------------------------------------------------------------------------- /2024/102/terraform.tfvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2024/102/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2024/102/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/102/versions.tf -------------------------------------------------------------------------------- /2024/103/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/103/main.tf -------------------------------------------------------------------------------- /2024/103/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/103/outputs.tf -------------------------------------------------------------------------------- /2024/103/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2024/103/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/103/versions.tf -------------------------------------------------------------------------------- /2024/105/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/105/main.tf -------------------------------------------------------------------------------- /2024/105/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/105/outputs.tf -------------------------------------------------------------------------------- /2024/105/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2024/105/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/105/versions.tf -------------------------------------------------------------------------------- /2024/106/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/106/main.tf -------------------------------------------------------------------------------- /2024/106/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2024/106/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/106/versions.tf -------------------------------------------------------------------------------- /2024/112/0-start/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/0-start/main.tf -------------------------------------------------------------------------------- /2024/112/0-start/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "westus2" -------------------------------------------------------------------------------- /2024/112/0-start/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2024/112/0-start/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/0-start/versions.tf -------------------------------------------------------------------------------- /2024/112/1-upgrade-3x/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/1-upgrade-3x/main.tf -------------------------------------------------------------------------------- /2024/112/1-upgrade-3x/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "westus2" -------------------------------------------------------------------------------- /2024/112/1-upgrade-3x/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2024/112/1-upgrade-3x/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/1-upgrade-3x/versions.tf -------------------------------------------------------------------------------- /2024/112/2-moved-block/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/2-moved-block/main.tf -------------------------------------------------------------------------------- /2024/112/2-moved-block/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "westus2" -------------------------------------------------------------------------------- /2024/112/2-moved-block/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2024/112/2-moved-block/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/2-moved-block/versions.tf -------------------------------------------------------------------------------- /2024/112/3-removed-block-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/3-removed-block-app/main.tf -------------------------------------------------------------------------------- /2024/112/3-removed-block-app/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "westus2" -------------------------------------------------------------------------------- /2024/112/3-removed-block-app/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2024/112/3-removed-block-app/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/3-removed-block-app/versions.tf -------------------------------------------------------------------------------- /2024/112/4-removed-block-plan/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/4-removed-block-plan/main.tf -------------------------------------------------------------------------------- /2024/112/4-removed-block-plan/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "westus2" -------------------------------------------------------------------------------- /2024/112/4-removed-block-plan/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2024/112/4-removed-block-plan/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/4-removed-block-plan/versions.tf -------------------------------------------------------------------------------- /2024/112/5-import-block-plan/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/5-import-block-plan/main.tf -------------------------------------------------------------------------------- /2024/112/5-import-block-plan/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "westus2" -------------------------------------------------------------------------------- /2024/112/5-import-block-plan/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2024/112/5-import-block-plan/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/5-import-block-plan/versions.tf -------------------------------------------------------------------------------- /2024/112/6-import-block-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/6-import-block-app/main.tf -------------------------------------------------------------------------------- /2024/112/6-import-block-app/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "westus2" -------------------------------------------------------------------------------- /2024/112/6-import-block-app/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2024/112/6-import-block-app/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/6-import-block-app/versions.tf -------------------------------------------------------------------------------- /2024/112/7-final/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/7-final/main.tf -------------------------------------------------------------------------------- /2024/112/7-final/terraform.tfvars: -------------------------------------------------------------------------------- 1 | location = "westus2" -------------------------------------------------------------------------------- /2024/112/7-final/variables.tf: -------------------------------------------------------------------------------- 1 | variable "location" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /2024/112/7-final/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/7-final/versions.tf -------------------------------------------------------------------------------- /2024/112/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/2024/112/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markti/azure-terraformer/HEAD/README.md --------------------------------------------------------------------------------