Last active
May 10, 2020 20:59
-
-
Save PradeepLoganathan/cba3f3c7aabcf25afa907d11cb2e8351 to your computer and use it in GitHub Desktop.
variables in terraform -- Gists for blog post https://pradeeploganathan.com/cloud/terraform-getting-started/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variable "location" { | |
| type = string | |
| description = "Azure location of terraform server environment" | |
| default = "australiaeast" | |
| } | |
| variable "vnet_address_space" { | |
| type = list | |
| description = "Address space for Virtual Network" | |
| default = ["10.0.0.0/16"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment