Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created November 10, 2020 03:46
Show Gist options
  • Save PradeepLoganathan/676626759247d54a1bba44ddb3589c06 to your computer and use it in GitHub Desktop.
Save PradeepLoganathan/676626759247d54a1bba44ddb3589c06 to your computer and use it in GitHub Desktop.
variable "resource_prefix" {
type = string
description = "(Required) Prefix given to all resources within the module."
}
variable "location" {
type = string
description = "(Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created."
}
variable "kubernetes_version" {
type = string
default = "1.16.8"
description = "Version of Kubernetes specified when creating the AKS managed cluster. If not specified, the latest recommended version will be used at provisioning time (but won't auto-upgrade)."
}
variable "tags" {
type = map
default = {}
description = "Set of base tags that will be associated with each supported resource."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment