Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

net-lb-app-ext example fixes #1959

Merged
merged 2 commits into from
Jan 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions modules/net-lb-app-ext/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down Expand Up @@ -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" {
Expand All @@ -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
Loading