├── .gitignore ├── LICENSE ├── README.md └── code ├── 01-hello-world ├── README.md └── main.tf ├── 02-one-server ├── README.md └── main.tf ├── 03-one-webserver ├── README.md └── main.tf ├── 04-one-webserver-with-vars ├── README.md ├── main.tf ├── outputs.tf └── vars.tf ├── 05-cluster-webserver ├── README.md ├── main.tf ├── outputs.tf └── vars.tf ├── 06-create-blob-storage ├── README.md ├── main.tf ├── outputs.tf └── vars.tf └── 07-terraform-state ├── README.md ├── backend.tf └── main.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/README.md -------------------------------------------------------------------------------- /code/01-hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/01-hello-world/README.md -------------------------------------------------------------------------------- /code/01-hello-world/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/01-hello-world/main.tf -------------------------------------------------------------------------------- /code/02-one-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/02-one-server/README.md -------------------------------------------------------------------------------- /code/02-one-server/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/02-one-server/main.tf -------------------------------------------------------------------------------- /code/03-one-webserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/03-one-webserver/README.md -------------------------------------------------------------------------------- /code/03-one-webserver/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/03-one-webserver/main.tf -------------------------------------------------------------------------------- /code/04-one-webserver-with-vars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/04-one-webserver-with-vars/README.md -------------------------------------------------------------------------------- /code/04-one-webserver-with-vars/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/04-one-webserver-with-vars/main.tf -------------------------------------------------------------------------------- /code/04-one-webserver-with-vars/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/04-one-webserver-with-vars/outputs.tf -------------------------------------------------------------------------------- /code/04-one-webserver-with-vars/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/04-one-webserver-with-vars/vars.tf -------------------------------------------------------------------------------- /code/05-cluster-webserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/05-cluster-webserver/README.md -------------------------------------------------------------------------------- /code/05-cluster-webserver/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/05-cluster-webserver/main.tf -------------------------------------------------------------------------------- /code/05-cluster-webserver/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/05-cluster-webserver/outputs.tf -------------------------------------------------------------------------------- /code/05-cluster-webserver/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/05-cluster-webserver/vars.tf -------------------------------------------------------------------------------- /code/06-create-blob-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/06-create-blob-storage/README.md -------------------------------------------------------------------------------- /code/06-create-blob-storage/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/06-create-blob-storage/main.tf -------------------------------------------------------------------------------- /code/06-create-blob-storage/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/06-create-blob-storage/outputs.tf -------------------------------------------------------------------------------- /code/06-create-blob-storage/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/06-create-blob-storage/vars.tf -------------------------------------------------------------------------------- /code/07-terraform-state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/07-terraform-state/README.md -------------------------------------------------------------------------------- /code/07-terraform-state/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/07-terraform-state/backend.tf -------------------------------------------------------------------------------- /code/07-terraform-state/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsof/terraform-azure-examples/HEAD/code/07-terraform-state/main.tf --------------------------------------------------------------------------------