Skip to content

Commit

Permalink
missed variable, fix ip forward proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcalalang committed Dec 1, 2023
1 parent 2ca522e commit da0026c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"http-as3": {
"class": "Service_HTTP",
"virtualAddresses": [
"10.0.3.8"
"10.0.3.7"
],
"virtualPort": 3128,
"layer4": "tcp",
Expand Down
2 changes: 1 addition & 1 deletion big-ip/terraform/configuration/as3Applications.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ resource "bigip_as3" "udp-declarations" {
# Pool declarations
resource "bigip_as3" "pool-declarations" {
for_each = fileset(path.module, "applications/as3/pool/**.tpl")
as3_json = templatefile("${path.module}/${each.key}", { subscriptionId = var.ARM_SUBSCRIPTION_ID })
as3_json = templatefile("${path.module}/${each.key}", { as3-version = var.as3-version, subscriptionId = var.ARM_SUBSCRIPTION_ID })
ignore_metadata = true
}

0 comments on commit da0026c

Please sign in to comment.