Skip to content

Commit 3416280

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

File tree

4 files changed

+69
-31
lines changed

4 files changed

+69
-31
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="1.0.0" lastModifiedVersion="0.29.20"/>
12+
<VersionBadge repoTitle="Load Balancer Modules" version="1.0.1" lastModifiedVersion="0.29.20"/>
1313

1414
# ACM TLS Certificate
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/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/v1.0.1/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=v1.0.0"
235+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/acm-tls-certificate?ref=v1.0.1"
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=v1.0.0"
293+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/acm-tls-certificate?ref=v1.0.1"
294294
}
295295
296296
inputs = {
@@ -543,11 +543,11 @@ Global tags to apply to all ACM certificates issued via this module. These globa
543543
<!-- ##DOCS-SOURCER-START
544544
{
545545
"originalSources": [
546-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/acm-tls-certificate/readme.md",
547-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/acm-tls-certificate/variables.tf",
548-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/acm-tls-certificate/outputs.tf"
546+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/acm-tls-certificate/readme.md",
547+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/acm-tls-certificate/variables.tf",
548+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/acm-tls-certificate/outputs.tf"
549549
],
550550
"sourcePlugin": "module-catalog-api",
551-
"hash": "e06f36b34fd7e7a88898b9d62a2d8df7"
551+
"hash": "314688349429a3f6564e497486c5b721"
552552
}
553553
##DOCS-SOURCER-END -->

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

Lines changed: 47 additions & 9 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="1.0.0" lastModifiedVersion="0.30.5"/>
12+
<VersionBadge repoTitle="Load Balancer Modules" version="1.0.1" lastModifiedVersion="1.0.1"/>
1313

1414
# Application Load Balancer (ALB) Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/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/v1.0.1/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.30.5" 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/v1.0.1" 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=v1.0.0"
194+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/alb?ref=v1.0.1"
195195
196196
# ----------------------------------------------------------------------------------------------------
197197
# REQUIRED VARIABLES
@@ -261,6 +261,11 @@ module "alb" {
261261
# or something even more restrictive.
262262
allow_inbound_from_cidr_blocks = ["0.0.0.0/0"]
263263
264+
# The IPv6 CIDR blocks from which the ALB will allow inbound HTTP/HTTPS
265+
# requests. Use the default value to allow any IPv6 address to make requests.
266+
# Only used if var.is_internal_alb is false.
267+
allow_inbound_from_ipv6_cidr_blocks = []
268+
264269
# The IDs of security groups from which this ALB will allow incoming requests.
265270
# . If you update this variable, make sure to update
266271
# var.allow_inbound_from_security_group_ids_num too!
@@ -279,6 +284,10 @@ module "alb" {
279284
# through this var are allowed for outbound traffic.
280285
allow_outbound_to_cidr_blocks = ["0.0.0.0/0"]
281286
287+
# The IPv6 CIDR blocks to which the ALB will allow outbound traffic. Only used
288+
# if var.allow_all_outbound is true.
289+
allow_outbound_to_ipv6_cidr_blocks = ["::/0"]
290+
282291
# Prefix to use for access logs to create a sub-folder in S3 Bucket name where
283292
# ALB logs should be stored. Only used if
284293
# var.enable_custom_alb_access_logs_s3_prefix is true.
@@ -418,7 +427,7 @@ module "alb" {
418427
# ------------------------------------------------------------------------------------------------------
419428
420429
terraform {
421-
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/alb?ref=v1.0.0"
430+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/alb?ref=v1.0.1"
422431
}
423432
424433
inputs = {
@@ -491,6 +500,11 @@ inputs = {
491500
# or something even more restrictive.
492501
allow_inbound_from_cidr_blocks = ["0.0.0.0/0"]
493502
503+
# The IPv6 CIDR blocks from which the ALB will allow inbound HTTP/HTTPS
504+
# requests. Use the default value to allow any IPv6 address to make requests.
505+
# Only used if var.is_internal_alb is false.
506+
allow_inbound_from_ipv6_cidr_blocks = []
507+
494508
# The IDs of security groups from which this ALB will allow incoming requests.
495509
# . If you update this variable, make sure to update
496510
# var.allow_inbound_from_security_group_ids_num too!
@@ -509,6 +523,10 @@ inputs = {
509523
# through this var are allowed for outbound traffic.
510524
allow_outbound_to_cidr_blocks = ["0.0.0.0/0"]
511525
526+
# The IPv6 CIDR blocks to which the ALB will allow outbound traffic. Only used
527+
# if var.allow_all_outbound is true.
528+
allow_outbound_to_ipv6_cidr_blocks = ["::/0"]
529+
512530
# Prefix to use for access logs to create a sub-folder in S3 Bucket name where
513531
# ALB logs should be stored. Only used if
514532
# var.enable_custom_alb_access_logs_s3_prefix is true.
@@ -774,6 +792,15 @@ The CIDR-formatted IP Address ranges from which this ALB will allow incoming req
774792
]"/>
775793
</HclListItem>
776794

795+
<HclListItem name="allow_inbound_from_ipv6_cidr_blocks" requirement="optional" type="list(string)">
796+
<HclListItemDescription>
797+
798+
The IPv6 CIDR blocks from which the ALB will allow inbound HTTP/HTTPS requests. Use the default value to allow any IPv6 address to make requests. Only used if <a href="#is_internal_alb"><code>is_internal_alb</code></a> is false.
799+
800+
</HclListItemDescription>
801+
<HclListItemDefaultValue defaultValue="[]"/>
802+
</HclListItem>
803+
777804
<HclListItem name="allow_inbound_from_security_group_ids" requirement="optional" type="list(string)">
778805
<HclListItemDescription>
779806

@@ -803,6 +830,17 @@ The CIDR-formatted IP Address ranges from which this ALB will allow outgoing req
803830
]"/>
804831
</HclListItem>
805832

833+
<HclListItem name="allow_outbound_to_ipv6_cidr_blocks" requirement="optional" type="list(string)">
834+
<HclListItemDescription>
835+
836+
The IPv6 CIDR blocks to which the ALB will allow outbound traffic. Only used if <a href="#allow_all_outbound"><code>allow_all_outbound</code></a> is true.
837+
838+
</HclListItemDescription>
839+
<HclListItemDefaultValue defaultValue="[
840+
&quot;::/0&quot;
841+
]"/>
842+
</HclListItem>
843+
806844
<HclListItem name="custom_alb_access_logs_s3_prefix" requirement="optional" type="string">
807845
<HclListItemDescription>
808846

@@ -1339,11 +1377,11 @@ A map from port to the AWS ARNs of the listeners for the ALB that has been deplo
13391377
<!-- ##DOCS-SOURCER-START
13401378
{
13411379
"originalSources": [
1342-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/alb/readme.md",
1343-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/alb/variables.tf",
1344-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/alb/outputs.tf"
1380+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/alb/readme.md",
1381+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/alb/variables.tf",
1382+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/alb/outputs.tf"
13451383
],
13461384
"sourcePlugin": "module-catalog-api",
1347-
"hash": "77b2328634f7e1489344990a8923309b"
1385+
"hash": "4f7c6cba3fb8cd668a7fddf93cbbc909"
13481386
}
13491387
##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="1.0.0" lastModifiedVersion="0.30.3"/>
12+
<VersionBadge repoTitle="Load Balancer Modules" version="1.0.1" lastModifiedVersion="0.30.3"/>
1313

1414
# Load Balancer Listener Rules
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/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/v1.0.1/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.30.3" 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=v1.0.0"
98+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/lb-listener-rules?ref=v1.0.1"
9999
100100
# ----------------------------------------------------------------------------------------------------
101101
# REQUIRED VARIABLES
@@ -154,7 +154,7 @@ module "lb_listener_rules" {
154154
# ------------------------------------------------------------------------------------------------------
155155
156156
terraform {
157-
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/lb-listener-rules?ref=v1.0.0"
157+
source = "git::[email protected]:gruntwork-io/terraform-aws-load-balancer.git//modules/lb-listener-rules?ref=v1.0.1"
158158
}
159159
160160
inputs = {
@@ -849,11 +849,11 @@ The ARNs of the rules of type redirect. The key is the same key of the rule from
849849
<!-- ##DOCS-SOURCER-START
850850
{
851851
"originalSources": [
852-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/lb-listener-rules/readme.md",
853-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/lb-listener-rules/variables.tf",
854-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/lb-listener-rules/outputs.tf"
852+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/lb-listener-rules/readme.md",
853+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/lb-listener-rules/variables.tf",
854+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/lb-listener-rules/outputs.tf"
855855
],
856856
"sourcePlugin": "module-catalog-api",
857-
"hash": "78deedbd0633aceaee654d805a4e82f5"
857+
"hash": "2ffca8be8a6f88e1029566cdccefac73"
858858
}
859859
##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="1.0.0" lastModifiedVersion="0.23.0"/>
12+
<VersionBadge repoTitle="Load Balancer Modules" version="1.0.1" 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/v1.0.0/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/v1.0.1/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

@@ -28,11 +28,11 @@ For information on why the module was removed, refer to the discussion in [PR
2828
<!-- ##DOCS-SOURCER-START
2929
{
3030
"originalSources": [
31-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/nlb/readme.md",
32-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/nlb/variables.tf",
33-
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.0/modules/nlb/outputs.tf"
31+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/nlb/readme.md",
32+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/nlb/variables.tf",
33+
"https://github.com/gruntwork-io/terraform-aws-load-balancer/tree/v1.0.1/modules/nlb/outputs.tf"
3434
],
3535
"sourcePlugin": "module-catalog-api",
36-
"hash": "8464db9cd1026fee4ee161af4eb64d5f"
36+
"hash": "1d39a0fa3431b59d72ce72eb84148429"
3737
}
3838
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)