-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariable.tf
42 lines (34 loc) · 1.33 KB
/
variable.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Azure App Service Plan Variables
variable "resource_group_name" {
description = "(Required) The name of the resource group in which to create the App Service Plan component."
type = string
}
variable "location" {
description = "(Required) Specifies the supported Azure location where the resource exists"
type = string
}
variable "name" {
description = "(Required) Specifies the name of the App Service Plan component. Changing this forces a new resource to be created."
type = string
}
variable "kind" {
description = "(Optional) The kind of the App Service Plan to create. Possible values are Windows (also available as App), Linux, elastic (for Premium Consumption) and FunctionApp (for a Consumption Plan). Defaults to Windows. Changing this forces a new resource to be created"
type = string
}
variable "size" {
description = "(Required) Specifies the plan's instance size"
type = string
}
variable "tier" {
description = "(Required) Specifies the plan's pricing tier"
type = string
}
variable "capacity" {
description = "(Optional) Specifies the number of workers associated with this App Service Plan"
type = string
default = null
}
variable "tags" {
description = "(Optional) A mapping of default tags to assign to the resource"
type = map(string)
}