Skip to content

Commit 47a47af

Browse files
authored
chore: fix documentation (#384)
1 parent d1c89b9 commit 47a47af

File tree

5 files changed

+5
-90
lines changed

5 files changed

+5
-90
lines changed

README.md

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Current version is 9.0. Upgrade guides:
3434
- [6.X -> 7.0](/docs/upgrading_to_v7.0.md)
3535
- [7.X -> 8.0](/docs/upgrading_to_v8.0.md)
3636
- [8.X -> 9.0](/docs/upgrading_to_v9.0.md)
37-
- [9.X -> 10.0](/docs/upgrading_to_v10.0.m)
37+
- [9.X -> 10.0](/docs/upgrading_to_v10.0.md)
3838

3939
## Usage
4040

@@ -48,30 +48,16 @@ module "gce-lb-http" {
4848
target_tags = [module.mig1.target_tags, module.mig2.target_tags]
4949
backends = {
5050
default = {
51-
description = null
5251
port = var.service_port
5352
protocol = "HTTP"
5453
port_name = var.service_port_name
5554
timeout_sec = 10
5655
enable_cdn = false
57-
custom_request_headers = null
58-
custom_response_headers = null
59-
security_policy = null
60-
compression_mode = null
6156
62-
connection_draining_timeout_sec = null
63-
session_affinity = null
64-
affinity_cookie_ttl_sec = null
6557
6658
health_check = {
67-
check_interval_sec = null
68-
timeout_sec = null
69-
healthy_threshold = null
70-
unhealthy_threshold = null
7159
request_path = "/"
7260
port = var.service_port
73-
host = null
74-
logging = null
7561
}
7662
7763
log_config = {
@@ -83,23 +69,11 @@ module "gce-lb-http" {
8369
{
8470
# Each node pool instance group should be added to the backend.
8571
group = var.backend
86-
balancing_mode = null
87-
capacity_scaler = null
88-
description = null
89-
max_connections = null
90-
max_connections_per_instance = null
91-
max_connections_per_endpoint = null
92-
max_rate = null
93-
max_rate_per_instance = null
94-
max_rate_per_endpoint = null
95-
max_utilization = null
9672
},
9773
]
9874
9975
iap_config = {
10076
enable = false
101-
oauth2_client_id = null
102-
oauth2_client_secret = null
10377
}
10478
}
10579
}

autogen/README.md

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Current version is 9.0. Upgrade guides:
5050
- [6.X -> 7.0](/docs/upgrading_to_v7.0.md)
5151
- [7.X -> 8.0](/docs/upgrading_to_v8.0.md)
5252
- [8.X -> 9.0](/docs/upgrading_to_v9.0.md)
53-
- [9.X -> 10.0](/docs/upgrading_to_v10.0.m)
53+
- [9.X -> 10.0](/docs/upgrading_to_v10.0.md)
5454

5555
## Usage
5656

@@ -76,7 +76,6 @@ module "lb-http" {
7676
{% endif %}
7777
backends = {
7878
default = {
79-
description = null
8079
{% if not serverless %}{# not necessary for serverless as default port_name=http, protocol=HTTP #}
8180
port = var.service_port
8281
{% endif %}
@@ -86,25 +85,12 @@ module "lb-http" {
8685
timeout_sec = 10
8786
{% endif %}
8887
enable_cdn = false
89-
custom_request_headers = null
90-
custom_response_headers = null
91-
security_policy = null
92-
compression_mode = null
9388
9489
{% if not serverless %}
95-
connection_draining_timeout_sec = null
96-
session_affinity = null
97-
affinity_cookie_ttl_sec = null
9890
9991
health_check = {
100-
check_interval_sec = null
101-
timeout_sec = null
102-
healthy_threshold = null
103-
unhealthy_threshold = null
10492
request_path = "/"
10593
port = var.service_port
106-
host = null
107-
logging = null
10894
}
10995
{% endif %}
11096
@@ -125,24 +111,12 @@ module "lb-http" {
125111
{
126112
# Each node pool instance group should be added to the backend.
127113
group = var.backend
128-
balancing_mode = null
129-
capacity_scaler = null
130-
description = null
131-
max_connections = null
132-
max_connections_per_instance = null
133-
max_connections_per_endpoint = null
134-
max_rate = null
135-
max_rate_per_instance = null
136-
max_rate_per_endpoint = null
137-
max_utilization = null
138114
},
139115
]
140116
{% endif %}
141117
142118
iap_config = {
143119
enable = false
144-
oauth2_client_id = null
145-
oauth2_client_secret = null
146120
}
147121
}
148122
}

docs/upgrading_to_v10.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The `use_ssl_certificates` parameter has been removed. A new parameter `create_s
1010

1111
In order to create https load balancer you need to pass `ssl = true` and at least one of the following:
1212

13-
1) list of self links to your own certificates passed to`ssl_certificates` OR
13+
1) list of self links to your own certificates passed to `ssl_certificates` OR
1414
2) `create_ssl_certificate` set to `true` and `private_key/certificate` OR
1515
3) list of domains for `managed_ssl_certificate_domains`, OR
1616
4) Managed certificate using certificate manager by passing `certificate_map`

modules/dynamic_backends/README.md

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Current version is 9.0. Upgrade guides:
2727
- [6.X -> 7.0](/docs/upgrading_to_v7.0.md)
2828
- [7.X -> 8.0](/docs/upgrading_to_v8.0.md)
2929
- [8.X -> 9.0](/docs/upgrading_to_v9.0.md)
30-
- [9.X -> 10.0](/docs/upgrading_to_v10.0.m)
30+
- [9.X -> 10.0](/docs/upgrading_to_v10.0.md)
3131

3232
## Usage
3333

@@ -41,30 +41,16 @@ module "gce-lb-http" {
4141
target_tags = [module.mig1.target_tags, module.mig2.target_tags]
4242
backends = {
4343
default = {
44-
description = null
4544
port = var.service_port
4645
protocol = "HTTP"
4746
port_name = var.service_port_name
4847
timeout_sec = 10
4948
enable_cdn = false
50-
custom_request_headers = null
51-
custom_response_headers = null
52-
security_policy = null
53-
compression_mode = null
5449
55-
connection_draining_timeout_sec = null
56-
session_affinity = null
57-
affinity_cookie_ttl_sec = null
5850
5951
health_check = {
60-
check_interval_sec = null
61-
timeout_sec = null
62-
healthy_threshold = null
63-
unhealthy_threshold = null
6452
request_path = "/"
6553
port = var.service_port
66-
host = null
67-
logging = null
6854
}
6955
7056
log_config = {
@@ -76,23 +62,11 @@ module "gce-lb-http" {
7662
{
7763
# Each node pool instance group should be added to the backend.
7864
group = var.backend
79-
balancing_mode = null
80-
capacity_scaler = null
81-
description = null
82-
max_connections = null
83-
max_connections_per_instance = null
84-
max_connections_per_endpoint = null
85-
max_rate = null
86-
max_rate_per_instance = null
87-
max_rate_per_endpoint = null
88-
max_utilization = null
8965
},
9066
]
9167
9268
iap_config = {
9369
enable = false
94-
oauth2_client_id = null
95-
oauth2_client_secret = null
9670
}
9771
}
9872
}

modules/serverless_negs/README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Current version is 9.0. Upgrade guides:
2222
- [6.X -> 7.0](/docs/upgrading_to_v7.0.md)
2323
- [7.X -> 8.0](/docs/upgrading_to_v8.0.md)
2424
- [8.X -> 9.0](/docs/upgrading_to_v9.0.md)
25-
- [9.X -> 10.0](/docs/upgrading_to_v10.0.m)
25+
- [9.X -> 10.0](/docs/upgrading_to_v10.0.md)
2626

2727
## Usage
2828

@@ -39,14 +39,9 @@ module "lb-http" {
3939
https_redirect = true
4040
backends = {
4141
default = {
42-
description = null
4342
protocol = "HTTP"
4443
port_name = var.service_port_name
4544
enable_cdn = false
46-
custom_request_headers = null
47-
custom_response_headers = null
48-
security_policy = null
49-
compression_mode = null
5045
5146
5247
log_config = {
@@ -63,8 +58,6 @@ module "lb-http" {
6358
6459
iap_config = {
6560
enable = false
66-
oauth2_client_id = null
67-
oauth2_client_secret = null
6861
}
6962
}
7063
}

0 commit comments

Comments
 (0)