-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
112 lines (94 loc) · 2.51 KB
/
variables.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
variable "resource_group_name" {
type = string
description = "The resource group your function app will be assigned to"
}
variable "name" {
type = string
description = "The name of your function app"
}
variable "location" {
type = string
default = "UK South"
}
variable "env" {
type = string
description = "The environment to deploy to"
}
variable "app_settings" {
type = map(string)
description = "(Optional) A map of key-value pairs for App Settings and custom values."
default = {}
}
variable "os_type" {
type = string
description = "(Required) The O/S type for the App Services to be hosted in this plan."
default = "Linux"
}
variable "product" {
type = string
description = "The product name"
}
variable "create_service_plan" {
type = bool
description = "If true a new service plan is created"
default = true
}
variable "service_plan_id" {
type = string
description = "If you want to use an existing service plan"
default = null
}
variable "sa_account_tier" {
type = string
description = "(Required) Defines the Tier to use for this storage account"
default = "Standard"
}
variable "account_replication_type" {
type = string
description = "(Required) Defines the type of replication to use for this storage account."
default = "ZRS"
}
variable "account_kind" {
type = string
description = "(Optional) Defines the Kind of account"
default = "StorageV2"
}
variable "sku_name" {
type = string
description = "(Required) The SKU for the plan."
default = "Y1"
}
variable "tags" {
type = map(string)
description = "A mapping of tags assigned to the Resource."
default = {}
}
variable "enable_client_affinity" {
type = bool
default = false
description = "(Optional) Should Client Affinity be enabled?"
}
variable "https_only" {
type = bool
default = true
description = "(Optional) Should the Web App require HTTPS connections."
}
variable "ftps_state" {
type = string
description = "(Optional) State of FTP / FTPS service for this Windows Function App."
default = null
}
variable "dotnet_stack" {
type = bool
default = false
}
variable "dotnet_version" {
type = string
description = "(Optional) The version of .NET to use."
default = "8.0"
}
variable "app_command_line" {
type = string
default = null
description = "(Optional) The App command line to launch."
}