File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
terraform/azure/templates Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,8 @@ resource "azurerm_application_gateway" "cf" {
76
76
location = " ${ var . region } "
77
77
78
78
sku {
79
- name = " Standard_Small "
80
- tier = " Standard "
79
+ name = " Standard_v2 "
80
+ tier = " Standard_v2 "
81
81
capacity = 2
82
82
}
83
83
@@ -164,6 +164,7 @@ resource "azurerm_application_gateway" "cf" {
164
164
http_listener_name = " ${ azurerm_virtual_network . bosh . name } -http-lstn"
165
165
backend_address_pool_name = " ${ var . env_id } -cf-backend-address-pool"
166
166
backend_http_settings_name = " ${ azurerm_virtual_network . bosh . name } -be-htst"
167
+ priority = 201
167
168
}
168
169
169
170
request_routing_rule {
@@ -172,6 +173,7 @@ resource "azurerm_application_gateway" "cf" {
172
173
http_listener_name = " ${ azurerm_virtual_network . bosh . name } -https-lstn"
173
174
backend_address_pool_name = " ${ var . env_id } -cf-backend-address-pool"
174
175
backend_http_settings_name = " ${ azurerm_virtual_network . bosh . name } -be-htst"
176
+ priority = 202
175
177
}
176
178
177
179
request_routing_rule {
@@ -180,6 +182,7 @@ resource "azurerm_application_gateway" "cf" {
180
182
http_listener_name = " ${ azurerm_virtual_network . bosh . name } -logs-lstn"
181
183
backend_address_pool_name = " ${ var . env_id } -cf-backend-address-pool"
182
184
backend_http_settings_name = " ${ azurerm_virtual_network . bosh . name } -be-htst"
185
+ priority = 203
183
186
}
184
187
}
185
188
You can’t perform that action at this time.
0 commit comments