101-web-app-windows-dotnet patch (#173)

* fix 101-web-app-windows-dotnet example
This commit is contained in:
Dingjia Chen
2023-02-24 01:25:22 -06:00
committed by GitHub
parent 86ffc09726
commit 2eba295342
4 changed files with 45 additions and 26 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-windows-dotnet"
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"
}