Joey Lorich 415e3caa97 reorganize, add scaffold folder
update readmes

clean up tf provider

add readme and initial templates

add initial pass at readmes

more readme updates

update various quickstarts

finish cleaning up 101s

more updates

lots fo template updates

add remaining

more updates
2019-11-06 16:39:59 -05:00

66 lines
1.4 KiB
HCL

variable "rg" {
description = "Azure resource group for all resources."
}
variable "siteName" {
description = "Name of azure web app"
}
variable "tags" {
description = "Azure Tags for all resources."
default = {}
}
variable "administratorLogin" {
description = "Database administrator login name"
}
variable "administratorLoginPassword" {
description = "Database administrator password"
}
variable "databaseDTU" {
description = "Azure database for MySQL pricing tier"
default = 2
}
variable "databaseSkuName" {
description = "Azure database for MySQL sku name"
default = "GP_Gen4_2"
}
variable "databaseSkuFamily" {
description = "Azure database for MySQL sku family"
default = "Gen4"
}
variable "databaseSkuSizeMB" {
description = "Azure database for MySQL Sku Size"
default = 5120
}
variable "databaseSkuTier" {
description = "Azure database for MySQL pricing tier"
default = "GeneralPurpose"
}
variable "mysqlVersion" {
description = "MySQL version"
default = "5.6"
}
variable "loc" {
description = "Location for all resources."
default = "eastus2"
}
variable "servicePlanTier" {
description = "Azure managed application service plan pricing tier"
}
variable "servicePlanSize" {
description = "Azure managed application service plan instance size"
}