terraform/examples/azure-vnet-two-subnets
Annie Hedgpeth 8e7f3cc09d provider/azurerm: Add example of a VNET w/ Two Subnets (#14115)
* merge master

* added new constructs/naming for deploy scripts, etc.

* suppress az login output

* removed .tfvars and provider.tf; updated prev merge

* reverted .travis.yml back to Hashicorp's

* Reverting back to the Hashicorp travis file
2017-05-04 10:57:54 +01:00
..
.gitignore provider/azurerm: Add example of a VNET w/ Two Subnets (#14115) 2017-05-04 10:57:54 +01:00
README.md provider/azurerm: Add example of a VNET w/ Two Subnets (#14115) 2017-05-04 10:57:54 +01:00
deploy.ci.sh provider/azurerm: Add example of a VNET w/ Two Subnets (#14115) 2017-05-04 10:57:54 +01:00
deploy.mac.sh provider/azurerm: Add example of a VNET w/ Two Subnets (#14115) 2017-05-04 10:57:54 +01:00
main.tf provider/azurerm: Add example of a VNET w/ Two Subnets (#14115) 2017-05-04 10:57:54 +01:00
variables.tf provider/azurerm: Add example of a VNET w/ Two Subnets (#14115) 2017-05-04 10:57:54 +01:00

README.md

Virtual Network with Two Subnets

This template allows you to create a Virtual Network with two subnets.

main.tf

The main.tf file contains the actual resources that will be deployed. It also contains the Azure Resource Group definition and any defined variables.

outputs.tf

This data is outputted when terraform apply is called, and can be queried using the terraform output command.

provider.tf

Azure requires that an application is added to Azure Active Directory to generate the client_id, client_secret, and tenant_id needed by Terraform (subscription_id can be recovered from your Azure account details). Please go here for full instructions on how to create this to populate your provider.tf file.

terraform.tfvars

If a terraform.tfvars file is present in the current directory, Terraform automatically loads it to populate variables. We don't recommend saving usernames and password to version control, but you can create a local secret variables file and use -var-file to load it.

variables.tf

The variables.tf file contains all of the input parameters that the user can specify when deploying this Terraform template.