fix 101-web-app-linux-container example (#175)

This commit is contained in:
Dingjia Chen
2023-02-24 00:57:52 -06:00
committed by GitHub
parent 20d8beea6d
commit 077374c7c6
4 changed files with 45 additions and 27 deletions

View File

@ -1,35 +1,35 @@
variable "name" {
type = "string"
description = "Location of the azure resource group."
default = "demo-tfquickstart"
variable "prefix" {
type = string
default = "web-app-linux-container"
description = "Prefix of the resource name"
}
variable "environment" {
type = "string"
type = string
description = "Name of the deployment environment"
default = "dev"
}
variable "location" {
type = "string"
type = string
description = "Location to deploy the resource group"
default = "West US 2"
default = "eastus"
}
variable "dns_prefix" {
type = "string"
type = string
description = "A prefix for any dns based resources"
default = "tfq"
}
variable "plan_tier" {
type = "string"
type = string
description = "The tier of app service plan to create"
default = "Standard"
}
variable "plan_sku" {
type = "string"
type = string
description = "The sku of app service plan to create"
default = "S1"
}