fix 201-aks-acr-identity

This commit is contained in:
hezijie
2023-02-21 10:14:26 +08:00
parent 30ab022102
commit ed79d1aa3b
5 changed files with 31 additions and 22 deletions

View File

@ -1,12 +1,12 @@
// Naming
variable "name" {
type = "string"
type = string
description = "Location of the azure resource group."
default = "demo-tfquickstart"
}
variable "environment" {
type = "string"
type = string
description = "Name of the deployment environment"
default = "dev"
}
@ -14,7 +14,7 @@ variable "environment" {
// Resource information
variable "location" {
type = "string"
type = string
description = "Location of the azure resource group."
default = "WestUS2"
}
@ -22,19 +22,19 @@ variable "location" {
// Node type information
variable "node_count" {
type = "string"
type = number
description = "The number of K8S nodes to provision."
default = 3
}
variable "node_type" {
type = "string"
type = string
description = "The size of each node."
default = "Standard_D1_v2"
}
variable "dns_prefix" {
type = "string"
type = string
description = "DNS Prefix"
default = "tfq"
}