From 15ffc96c30e4c1db8b0688385349fdc4e3e4f405 Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Fri, 5 Jan 2024 11:29:21 +0100 Subject: [PATCH 1/2] Fix typos --- modules/net-lb-app-ext/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/net-lb-app-ext/README.md b/modules/net-lb-app-ext/README.md index c4f8486857..2ca5d0cf46 100644 --- a/modules/net-lb-app-ext/README.md +++ b/modules/net-lb-app-ext/README.md @@ -59,7 +59,7 @@ module "glb-0" { #### HTTP backends -An HTTPS load balancer needs a certificate and backends can be HTTP or HTTPS. THis is an example With HTTP backends and a managed certificate: +An HTTPS load balancer needs a certificate and backends can be HTTP or HTTPS. This is an example With HTTP backends and a managed certificate: ```hcl module "glb-0" { @@ -260,7 +260,7 @@ module "glb-0" { #### Instance Groups -The module can optionally create unmanaged instance groups, which can then be referred to in backends via their key. THis is the simple HTTP example above but with instance group creation managed by the module: +The module can optionally create unmanaged instance groups, which can then be referred to in backends via their key. This is the simple HTTP example above but with instance group creation managed by the module: ```hcl module "glb-0" { From e0657f253d76f5b75feeb3b3f4b9a1453a8207c4 Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Fri, 5 Jan 2024 14:22:57 +0100 Subject: [PATCH 2/2] 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 } }