From e0657f253d76f5b75feeb3b3f4b9a1453a8207c4 Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Fri, 5 Jan 2024 14:22:57 +0100 Subject: [PATCH] Small fixes net-lb-app-ext examples --- modules/net-lb-app-ext/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/net-lb-app-ext/README.md b/modules/net-lb-app-ext/README.md index 2ca5d0cf46..ff5159268b 100644 --- a/modules/net-lb-app-ext/README.md +++ b/modules/net-lb-app-ext/README.md @@ -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 } } @@ -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 } } @@ -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 } } @@ -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 } }