Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Last active May 10, 2020 20:59
Show Gist options
  • Select an option

  • Save PradeepLoganathan/cba3f3c7aabcf25afa907d11cb2e8351 to your computer and use it in GitHub Desktop.

Select an option

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/
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