Skip to content

Commit ac200a7

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

File tree

3 files changed

+28
-28
lines changed

3 files changed

+28
-28
lines changed

docs/reference/modules/terraform-aws-asg/asg-instance-refresh/asg-instance-refresh.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="Auto Scaling Group Modules" version="0.21.19" lastModifiedVersion="0.21.11"/>
12+
<VersionBadge repoTitle="Auto Scaling Group Modules" version="1.0.0" lastModifiedVersion="0.21.11"/>
1313

1414
# Auto Scaling Group Module with Instance Refresh
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-instance-refresh" 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-asg/tree/v1.0.0/modules/asg-instance-refresh" 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-asg/releases/tag/v0.21.11" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -89,7 +89,7 @@ The Terraform [instance_refresh](https://registry.terraform.io/providers/hashico
8989
9090
module "asg_instance_refresh" {
9191
92-
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/asg-instance-refresh?ref=v0.21.19"
92+
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/asg-instance-refresh?ref=v1.0.0"
9393
9494
# ----------------------------------------------------------------------------------------------------
9595
# REQUIRED VARIABLES
@@ -220,7 +220,7 @@ module "asg_instance_refresh" {
220220
# ------------------------------------------------------------------------------------------------------
221221
222222
terraform {
223-
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/asg-instance-refresh?ref=v0.21.19"
223+
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/asg-instance-refresh?ref=v1.0.0"
224224
}
225225
226226
inputs = {
@@ -651,11 +651,11 @@ A maximum duration that Terraform should wait for the EC2 Instances to be health
651651
<!-- ##DOCS-SOURCER-START
652652
{
653653
"originalSources": [
654-
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-instance-refresh/readme.md",
655-
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-instance-refresh/variables.tf",
656-
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-instance-refresh/outputs.tf"
654+
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/asg-instance-refresh/readme.md",
655+
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/asg-instance-refresh/variables.tf",
656+
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/asg-instance-refresh/outputs.tf"
657657
],
658658
"sourcePlugin": "module-catalog-api",
659-
"hash": "90bf32464f2bb1367b2ec6327309dc38"
659+
"hash": "de02d2b6b1afcb06aec9d9702ddf44bc"
660660
}
661661
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-asg/asg-rolling-deploy/asg-rolling-deploy.md

Lines changed: 9 additions & 9 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="Auto Scaling Group Modules" version="0.21.19" lastModifiedVersion="0.21.17"/>
12+
<VersionBadge repoTitle="Auto Scaling Group Modules" version="1.0.0" lastModifiedVersion="0.21.17"/>
1313

1414
# Auto Scaling Group with Rolling Deployment Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-rolling-deploy" 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-asg/tree/v1.0.0/modules/asg-rolling-deploy" 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-asg/releases/tag/v0.21.17" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -56,7 +56,7 @@ update your launch templates (e.g. by specifying a new AMI to deploy), Terraform
5656
Note that if all we did was use `create_before_destroy`, on each redeploy, our ASG would reset to its hard-coded
5757
`desired_capacity`, losing the capacity changes from auto scaling policies. We solve this problem by using an
5858
[external data source](https://www.terraform.io/docs/providers/external/data_source.html) that runs the Python script
59-
[get-desired-capacity.py](https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-rolling-deploy/describe-autoscaling-group/get-desired-capacity.py) to fetch the latest value of the
59+
[get-desired-capacity.py](https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/asg-rolling-deploy/describe-autoscaling-group/get-desired-capacity.py) to fetch the latest value of the
6060
`desired_capacity` parameter:
6161

6262
* If the script finds a value from an already-existing ASG, we use it, to ensure that the changes form auto scaling
@@ -77,7 +77,7 @@ Note that if all we did was use `create_before_destroy`, on each redeploy, our A
7777
7878
module "asg_rolling_deploy" {
7979
80-
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/asg-rolling-deploy?ref=v0.21.19"
80+
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/asg-rolling-deploy?ref=v1.0.0"
8181
8282
# ----------------------------------------------------------------------------------------------------
8383
# REQUIRED VARIABLES
@@ -231,7 +231,7 @@ module "asg_rolling_deploy" {
231231
# ------------------------------------------------------------------------------------------------------
232232
233233
terraform {
234-
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/asg-rolling-deploy?ref=v0.21.19"
234+
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/asg-rolling-deploy?ref=v1.0.0"
235235
}
236236
237237
inputs = {
@@ -729,11 +729,11 @@ A maximum duration that Terraform should wait for the EC2 Instances to be health
729729
<!-- ##DOCS-SOURCER-START
730730
{
731731
"originalSources": [
732-
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-rolling-deploy/readme.md",
733-
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-rolling-deploy/variables.tf",
734-
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-rolling-deploy/outputs.tf"
732+
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/asg-rolling-deploy/readme.md",
733+
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/asg-rolling-deploy/variables.tf",
734+
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/asg-rolling-deploy/outputs.tf"
735735
],
736736
"sourcePlugin": "module-catalog-api",
737-
"hash": "6d256db45cd6ffbbf7b0dad3169d3b19"
737+
"hash": "3f68c5ebf1b889fe60dddd0b9c85a6ad"
738738
}
739739
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-asg/server-group/server-group.md

Lines changed: 11 additions & 11 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="Auto Scaling Group Modules" version="0.21.19" lastModifiedVersion="0.21.14"/>
12+
<VersionBadge repoTitle="Auto Scaling Group Modules" version="1.0.0" lastModifiedVersion="0.21.14"/>
1313

1414
# Server Group Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/server-group" 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-asg/tree/v1.0.0/modules/server-group" 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-asg/releases/tag/v0.21.14" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -37,7 +37,7 @@ Scaling Group (ASG).
3737

3838
## Quick start
3939

40-
Check out the [server-group examples](https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/examples/server-group) for sample code that demonstrates how to use this module.
40+
Check out the [server-group examples](https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/examples/server-group) for sample code that demonstrates how to use this module.
4141

4242
## Background
4343

@@ -50,7 +50,7 @@ Check out the [server-group examples](https://github.com/gruntwork-io/terraform-
5050
The first question you may ask is, how is this different than an [Auto Scaling Group
5151
(ASG)](http://docs.aws.amazon.com/autoscaling/latest/userguide/AutoScalingGroup.html)? While an ASG does allow you to
5252
run a cluster of servers, automaticaly replace failed servers, and do zero-downtime deployment (see the
53-
[asg-rolling-deploy module](https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/asg-rolling-deploy)), attaching ENIs and EBS Volumes to servers in an ASG is very
53+
[asg-rolling-deploy module](https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/asg-rolling-deploy)), attaching ENIs and EBS Volumes to servers in an ASG is very
5454
tricky:
5555

5656
1. Using ENIs and EBS Volumes with ASGs is not natively supported by Terraform. The
@@ -87,7 +87,7 @@ The solution used in this module is to:
8787

8888
The server-group module will perform a zero-downtime, rolling deployment every time you make a change to the code and
8989
run `terraform apply`. This deployment process is implemented in a Python script called
90-
[rolling_deployment.py](https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/server-group/rolling-deploy/rolling_deployment.py) which runs in a [local-exec
90+
[rolling_deployment.py](https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/server-group/rolling-deploy/rolling_deployment.py) which runs in a [local-exec
9191
provisioner](https://www.terraform.io/docs/provisioners/local-exec.html).
9292

9393
Here is how it works:
@@ -147,7 +147,7 @@ module in your Terraform code:
147147
148148
module "server_group" {
149149
150-
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/server-group?ref=v0.21.19"
150+
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/server-group?ref=v1.0.0"
151151
152152
# ----------------------------------------------------------------------------------------------------
153153
# REQUIRED VARIABLES
@@ -466,7 +466,7 @@ module "server_group" {
466466
# ------------------------------------------------------------------------------------------------------
467467
468468
terraform {
469-
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/server-group?ref=v0.21.19"
469+
source = "git::[email protected]:gruntwork-io/terraform-aws-asg.git//modules/server-group?ref=v1.0.0"
470470
}
471471
472472
inputs = {
@@ -1445,11 +1445,11 @@ Other modules can depend on this variable to ensure those modules only deploy af
14451445
<!-- ##DOCS-SOURCER-START
14461446
{
14471447
"originalSources": [
1448-
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/server-group/readme.md",
1449-
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/server-group/variables.tf",
1450-
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v0.21.19/modules/server-group/outputs.tf"
1448+
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/server-group/readme.md",
1449+
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/server-group/variables.tf",
1450+
"https://github.com/gruntwork-io/terraform-aws-asg/tree/v1.0.0/modules/server-group/outputs.tf"
14511451
],
14521452
"sourcePlugin": "module-catalog-api",
1453-
"hash": "b139c8db34f0959cecb47834183a857b"
1453+
"hash": "3c9f07cae1f9f0606d154cb93ccdee69"
14541454
}
14551455
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)