This repository is currently being migrated. It's locked while the migration is in progress.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
109 lines (88 loc) · 2.58 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
variable "name_prefix" {}
variable "location" {
description = "Default location for the azure resource"
default = "West Europe"
}
variable "appgw_available_sku_names" {
description = "Specifies size of the application gateway"
default = {
"S_Small" = "Standard_Small"
"S_Medium" = "Standard_Medium"
"S_Large" = "Standard_Medium"
"W_Medium" = "WAF_Medium"
"W_Large" = "WAF_Large"
}
type = "map"
}
variable "app_gw_sku_name" {
description = "Possible values are: S_Small, S_Medium, S_Large, W_Medium and W_Large"
default = "S_Small"
type = "string"
}
variable "appgw_available_sku_tiers" {
description = "Specifies the tier of the application gateway. Standard or WAF (Web Application Firewall)"
default = {
"Standard" = "Standard"
"WAF" = "WAF"
}
type = "map"
}
variable "app_gw_sku_tier" {
description = "Possible values are Standard and WAF"
default = "Standard"
type = "string"
}
variable "app_gw_sku_capacity" {
description = "Specifies instance count. Can be 1 to 10."
default = "2"
type = "string"
}
variable "app_gw_subnet_adr_prefix" {
description = "The address prefix to use for the application gateway subnet"
default = "10.0.1.0/24"
type = "string"
}
variable "app_gw_frontend_port" {
description = "The Port to be assigned to the APP GW frontend"
default = "80"
type = "string"
}
variable "app_gw_backend_port" {
description = "The port to be assigned to the APP GW backend"
default = "80"
type = "string"
}
variable "app_gw_backend_protocol" {
description = "Valid values are: http and https"
default = "http"
type = "string"
}
variable "cookie_based_affinity" {
description = "Valid values are Enabled or Disabled"
default = "Disabled"
}
variable "private_ip_allocation" {
description = "Priate IP address allocation. Either static or dynamic. Default is dynamic"
default = "dynamic"
type = "string"
}
variable "existing_vnet_name" {
description = "The name of the existing Vnet to associate the APP GW to"
type = "string"
}
variable "existing_vnet_id" {
description = "The ID of the existing Vnet"
type = "string"
}
variable "create_new_rg" {
description = "Whether or not to create a new resource group"
default = "false"
}
variable "new_rg_name" {
description = "If set this will be the name of the new resource group"
default = ""
}
variable "existing_rg" {
description = "Name of the existing resource group to put the module resources in"
default = ""
}