Skip to content

Commit cb32637

Browse files
Co-authored-by: docs-sourcer[bot] <99042413+docs-sourcer[bot]@users.noreply.github.com>
1 parent 2d217df commit cb32637

File tree

4 files changed

+35
-37
lines changed

4 files changed

+35
-37
lines changed

docs/reference/modules/terraform-aws-load-balancer/acm-tls-certificate/acm-tls-certificate.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Load Balancer Modules" version="0.29.25" lastModifiedVersion="0.29.20"/>
12+
<VersionBadge repoTitle="Load Balancer Modules" version="0.29.26" lastModifiedVersion="0.29.20"/>
1313

1414
# ACM TLS Certificate
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/acm-tls-certificate" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/acm-tls-certificate" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/releases/tag/v0.29.20" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -232,7 +232,7 @@ In this example, the `acm-tls-certificates` module will "wait" until your `aws_r
232232
233233
module "acm_tls_certificate" {
234234
235-
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/acm-tls-certificate?ref=v0.29.25"
235+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/acm-tls-certificate?ref=v0.29.26"
236236
237237
# ----------------------------------------------------------------------------------------------------
238238
# REQUIRED VARIABLES
@@ -290,7 +290,7 @@ module "acm_tls_certificate" {
290290
# ------------------------------------------------------------------------------------------------------
291291
292292
terraform {
293-
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/acm-tls-certificate?ref=v0.29.25"
293+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/acm-tls-certificate?ref=v0.29.26"
294294
}
295295
296296
inputs = {
@@ -544,11 +544,11 @@ Global tags to apply to all ACM certificates issued via this module. These globa
544544
<!-- ##DOCS-SOURCER-START
545545
{
546546
"originalSources": [
547-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/acm-tls-certificate/readme.md",
548-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/acm-tls-certificate/variables.tf",
549-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/acm-tls-certificate/outputs.tf"
547+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/acm-tls-certificate/readme.md",
548+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/acm-tls-certificate/variables.tf",
549+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/acm-tls-certificate/outputs.tf"
550550
],
551551
"sourcePlugin": "module-catalog-api",
552-
"hash": "f64bc29f3ae0961d3631ff29fff73268"
552+
"hash": "bdbbd15683e1860f393a1c23e2ff552f"
553553
}
554554
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-load-balancer/alb/alb.md

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Load Balancer Modules" version="0.29.25" lastModifiedVersion="0.29.25"/>
12+
<VersionBadge repoTitle="Load Balancer Modules" version="0.29.26" lastModifiedVersion="0.29.26"/>
1313

1414
# Application Load Balancer (ALB) Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/alb" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/alb" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

18-
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/releases/tag/v0.29.25" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
18+
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/releases/tag/v0.29.26" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

2020
This Terraform Module creates an [Application Load Balancer](http://docs.aws.amazon.com/elasticloadbalancing/latest/application/introduction.html)
2121
that you can use as a load balancer for any [ALB Target Group](http://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-target-groups.html).
@@ -191,7 +191,7 @@ There are two ways for you to override this behavior:
191191
192192
module "alb" {
193193
194-
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/alb?ref=v0.29.25"
194+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/alb?ref=v0.29.26"
195195
196196
# ----------------------------------------------------------------------------------------------------
197197
# REQUIRED VARIABLES
@@ -283,8 +283,7 @@ module "alb" {
283283
custom_tags = {}
284284
285285
# Define the default action if a request to the load balancer does not match
286-
# any of your listener rules. Currently only 'fixed-response' and 'redirect'
287-
# are supported.
286+
# any of your listener rules.
288287
# https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_listener#default_action
289288
default_action = {"fixed-response":{"content_type":"text/plain","message_body":null,"status_code":404}}
290289
@@ -413,7 +412,7 @@ module "alb" {
413412
# ------------------------------------------------------------------------------------------------------
414413
415414
terraform {
416-
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/alb?ref=v0.29.25"
415+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/alb?ref=v0.29.26"
417416
}
418417
419418
inputs = {
@@ -508,8 +507,7 @@ inputs = {
508507
custom_tags = {}
509508
510509
# Define the default action if a request to the load balancer does not match
511-
# any of your listener rules. Currently only 'fixed-response' and 'redirect'
512-
# are supported.
510+
# any of your listener rules.
513511
# https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_listener#default_action
514512
default_action = {"fixed-response":{"content_type":"text/plain","message_body":null,"status_code":404}}
515513
@@ -800,10 +798,10 @@ A map of custom tags to apply to the ALB and its Security Group. The key is the
800798
<HclListItemDefaultValue defaultValue="{}"/>
801799
</HclListItem>
802800

803-
<HclListItem name="default_action" requirement="optional" type="map(any)">
801+
<HclListItem name="default_action" requirement="optional" type="any">
804802
<HclListItemDescription>
805803

806-
Define the default action if a request to the load balancer does not match any of your listener rules. Currently only 'fixed-response' and 'redirect' are supported. https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_listener#default_action
804+
Define the default action if a request to the load balancer does not match any of your listener rules. https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_listener#default_action
807805

808806
</HclListItemDescription>
809807
<HclListItemTypeDetails>
@@ -1169,11 +1167,11 @@ A map from port to the AWS ARNs of the listeners for the ALB that has been deplo
11691167
<!-- ##DOCS-SOURCER-START
11701168
{
11711169
"originalSources": [
1172-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/alb/readme.md",
1173-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/alb/variables.tf",
1174-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/alb/outputs.tf"
1170+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/alb/readme.md",
1171+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/alb/variables.tf",
1172+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/alb/outputs.tf"
11751173
],
11761174
"sourcePlugin": "module-catalog-api",
1177-
"hash": "97a54c33cb5b36dd7c3f8f0ecef9c477"
1175+
"hash": "d87b9015a947cdf119124cdd26c3bd91"
11781176
}
11791177
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-load-balancer/lb-listener-rules/lb-listener-rules.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Load Balancer Modules" version="0.29.25" lastModifiedVersion="0.29.24"/>
12+
<VersionBadge repoTitle="Load Balancer Modules" version="0.29.26" lastModifiedVersion="0.29.24"/>
1313

1414
# Load Balancer Listener Rules
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/lb-listener-rules" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/lb-listener-rules" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/releases/tag/v0.29.24" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -95,7 +95,7 @@ Note that in most cases, your path definitions should be mutually exclusive and
9595
9696
module "lb_listener_rules" {
9797
98-
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/lb-listener-rules?ref=v0.29.25"
98+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/lb-listener-rules?ref=v0.29.26"
9999
100100
# ----------------------------------------------------------------------------------------------------
101101
# REQUIRED VARIABLES
@@ -151,7 +151,7 @@ module "lb_listener_rules" {
151151
# ------------------------------------------------------------------------------------------------------
152152
153153
terraform {
154-
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/lb-listener-rules?ref=v0.29.25"
154+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/lb-listener-rules?ref=v0.29.26"
155155
}
156156
157157
inputs = {
@@ -835,11 +835,11 @@ The ARNs of the rules of type redirect. The key is the same key of the rule from
835835
<!-- ##DOCS-SOURCER-START
836836
{
837837
"originalSources": [
838-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/lb-listener-rules/readme.md",
839-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/lb-listener-rules/variables.tf",
840-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/lb-listener-rules/outputs.tf"
838+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/lb-listener-rules/readme.md",
839+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/lb-listener-rules/variables.tf",
840+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/lb-listener-rules/outputs.tf"
841841
],
842842
"sourcePlugin": "module-catalog-api",
843-
"hash": "7f326a505cb9bdc57bb6e16dde069bb8"
843+
"hash": "54e2a7c53375d57c3cc3c180a1f06682"
844844
}
845845
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-load-balancer/nlb/nlb.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Load Balancer Modules" version="0.29.25" lastModifiedVersion="0.23.0"/>
12+
<VersionBadge repoTitle="Load Balancer Modules" version="0.29.26" lastModifiedVersion="0.23.0"/>
1313

1414
# Network Load Balancer (NLB) Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/nlb" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/nlb" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/releases/tag/v0.23.0" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -29,11 +29,11 @@ For information on why the module was removed, refer to the discussion in [PR
2929
<!-- ##DOCS-SOURCER-START
3030
{
3131
"originalSources": [
32-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/nlb/readme.md",
33-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/nlb/variables.tf",
34-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.25/modules/nlb/outputs.tf"
32+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/nlb/readme.md",
33+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/nlb/variables.tf",
34+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v0.29.26/modules/nlb/outputs.tf"
3535
],
3636
"sourcePlugin": "module-catalog-api",
37-
"hash": "b92b2a31dfe00a2478e5b094cb483544"
37+
"hash": "e5e04da45d0ebf0fe95d2c11f1dbd3b1"
3838
}
3939
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)