101-web-app-windows-dotnet patch (#173)
* fix 101-web-app-windows-dotnet example
This commit is contained in:
@ -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"
|
||||
}
|
||||
|
Reference in New Issue
Block a user