Skip to content

Commit

Permalink
Small fixes net-lb-app-ext examples
Browse files Browse the repository at this point in the history
  • Loading branch information
juliocc committed Jan 5, 2024
1 parent 15ffc96 commit e0657f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/net-lb-app-ext/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ module "glb-0" {
default-b = {
zone = "${var.region}-b"
instances = [
"${module.compute-mig-b.id}"
module.compute-mig-b.id
]
named_ports = { http = 80 }
}
Expand Down Expand Up @@ -432,7 +432,7 @@ module "glb-0" {
endpoints = {
e-0 = {
instance = "my-ig-b"
ip_address = "${module.compute-mig-b.internal_ip}"
ip_address = module.compute-mig-b.internal_ip
port = 80
}
}
Expand Down Expand Up @@ -761,14 +761,14 @@ module "glb-0" {
ew4-a = {
zone = "${var.region}-a"
instances = [
"${module.compute-mig-a.id}"
module.compute-mig-a.id
]
named_ports = { http = 80 }
}
ew4-b = {
zone = "${var.region}-b"
instances = [
"${module.compute-mig-b.id}"
module.compute-mig-b.id
]
named_ports = { http = 80 }
}
Expand All @@ -795,7 +795,7 @@ module "glb-0" {
endpoints = {
e-0 = {
instance = "my-ig-b"
ip_address = "${module.compute-mig-b.internal_ip}"
ip_address = module.compute-mig-b.internal_ip
port = 80
}
}
Expand Down

0 comments on commit e0657f2

Please sign in to comment.