Skip to content

Commit 88c40cf

Browse files
Updated with the [latest changes](https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.35.10) from the terraform-aws-ecs@v0.35.10 source branch. (#1075)
Co-authored-by: docs-sourcer[bot] <99042413+docs-sourcer[bot]@users.noreply.github.com>
1 parent ac3a9ec commit 88c40cf

File tree

10 files changed

+108
-108
lines changed

10 files changed

+108
-108
lines changed

docs/reference/modules/terraform-aws-ecs/ecs-cluster/ecs-cluster.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ 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="Amazon ECS" version="0.35.9" lastModifiedVersion="0.35.8"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.35.10" lastModifiedVersion="0.35.10"/>
1313

1414
# ECS Cluster Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-cluster" 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-ecs/tree/v0.35.10/modules/ecs-cluster" 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-ecs/releases/tag/v0.35.8" 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-ecs/releases/tag/v0.35.10" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

2020
This Terraform Module launches an [EC2 Container Service
2121
Cluster](http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_clusters.html) that you can use to run
22-
Docker containers and services (see the [ecs-service module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-service/README.adoc)).
22+
Docker containers and services (see the [ecs-service module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-service/README.adoc)).
2323

2424
**WARNING: Launch Configurations:** [Launch configurations](https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-configurations.html) are being phased out in favor of [Launch Templates](https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-templates.html). Before upgrading to the latest release please be sure to test and plan any changes to infrastructure that may be impacted. Launch templates are being introduced in [PR #371](https://github.com/gruntwork-io/terraform-aws-ecs/pull/371)
2525

@@ -32,7 +32,7 @@ ECS and register itself as part of the right cluster.
3232

3333
## How do you run Docker containers on the cluster?
3434

35-
See the [service module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-service/README.adoc).
35+
See the [service module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-service/README.adoc).
3636

3737
## How do you add additional security group rules?
3838

@@ -97,7 +97,7 @@ currently no way in ECS to manage IAM policies on a per-Docker-container basis.
9797

9898
## How do you make changes to the EC2 Instances in the cluster?
9999

100-
To deploy an update to an ECS Service, see the [ecs-service module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-service). To deploy an update to the
100+
To deploy an update to an ECS Service, see the [ecs-service module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-service). To deploy an update to the
101101
EC2 Instances in your ECS cluster, such as a new AMI, read on.
102102

103103
Terraform and AWS do not provide a way to automatically roll out a change to the Instances in an ECS Cluster. Due to
@@ -122,8 +122,8 @@ To deploy a change such as rolling out a new AMI to all ECS Instances:
122122
python3 roll-out-ecs-cluster-update.py --asg-name ASG_NAME --cluster-name CLUSTER_NAME --aws-region AWS_REGION
123123
```
124124
125-
If you have your output variables configured as shown in [outputs.tf](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/examples/docker-service-with-elb/outputs.tf)
126-
of the [docker-service-with-elb example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/examples/docker-service-with-elb), you can use the `terraform output`
125+
If you have your output variables configured as shown in [outputs.tf](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/examples/docker-service-with-elb/outputs.tf)
126+
of the [docker-service-with-elb example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/examples/docker-service-with-elb), you can use the `terraform output`
127127
command to fill in most of the arguments automatically:
128128
129129
```
@@ -207,7 +207,7 @@ enable Capacity Providers on an existing ECS cluster that did not have Capacity
207207
instances to ensure all the instances get associated with the new Capacity Provider.
208208

209209
To rotate the instances, you can run the
210-
[roll-out-ecs-cluster-update.py](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-cluster/roll-out-ecs-cluster-update.py)
210+
[roll-out-ecs-cluster-update.py](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-cluster/roll-out-ecs-cluster-update.py)
211211
script in the `terraform-aws-ecs` module. Refer to the
212212
[documentation](#how-do-you-make-changes-to-the-ec2-instances-in-the-cluster)
213213
for more information on the script.
@@ -225,7 +225,7 @@ for more information on the script.
225225
226226
module "ecs_cluster" {
227227
228-
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-cluster?ref=v0.35.9"
228+
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-cluster?ref=v0.35.10"
229229
230230
# ----------------------------------------------------------------------------------------------------
231231
# REQUIRED VARIABLES
@@ -489,7 +489,7 @@ module "ecs_cluster" {
489489
# ------------------------------------------------------------------------------------------------------
490490
491491
terraform {
492-
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-cluster?ref=v0.35.9"
492+
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-cluster?ref=v0.35.10"
493493
}
494494
495495
inputs = {
@@ -1341,11 +1341,11 @@ Set this variable to true to enable the use of Instance Metadata Service Version
13411341
<!-- ##DOCS-SOURCER-START
13421342
{
13431343
"originalSources": [
1344-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-cluster/readme.md",
1345-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-cluster/variables.tf",
1346-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-cluster/outputs.tf"
1344+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-cluster/readme.md",
1345+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-cluster/variables.tf",
1346+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-cluster/outputs.tf"
13471347
],
13481348
"sourcePlugin": "module-catalog-api",
1349-
"hash": "79ae36c281df4f825aba1d29ccbaa108"
1349+
"hash": "8c02adfc9076b27b1d064d2cd3d279f5"
13501350
}
13511351
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-daemon-service/ecs-daemon-service.md

Lines changed: 10 additions & 10 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="Amazon ECS" version="0.35.9" lastModifiedVersion="0.35.5"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.35.10" lastModifiedVersion="0.35.10"/>
1313

1414
# ECS Daemon Service Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-daemon-service" 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-ecs/tree/v0.35.10/modules/ecs-daemon-service" 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-ecs/releases/tag/v0.35.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-ecs/releases/tag/v0.35.10" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

2020
This Terraform Module creates an [ECS Daemon Service](http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html)
2121
that you can use to deploy exactly one task on each active container instance that meets all of the task placement constraints
@@ -33,7 +33,7 @@ environment variables to set, and so on. To actually run an ECS Task, you define
3333

3434
## How do you create an ECS cluster?
3535

36-
To use ECS, you first deploy one or more EC2 Instances into a "cluster". See the [ecs-cluster module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-cluster)
36+
To use ECS, you first deploy one or more EC2 Instances into a "cluster". See the [ecs-cluster module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-cluster)
3737
for how to create a cluster.
3838

3939
## How do you add additional IAM policies?
@@ -82,7 +82,7 @@ EOF
8282
8383
module "ecs_daemon_service" {
8484
85-
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v0.35.9"
85+
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v0.35.10"
8686
8787
# ----------------------------------------------------------------------------------------------------
8888
# REQUIRED VARIABLES
@@ -207,7 +207,7 @@ module "ecs_daemon_service" {
207207
# ------------------------------------------------------------------------------------------------------
208208
209209
terraform {
210-
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v0.35.9"
210+
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v0.35.10"
211211
}
212212
213213
inputs = {
@@ -603,11 +603,11 @@ If true, Terraform will wait for the service to reach a steady state—as in, th
603603
<!-- ##DOCS-SOURCER-START
604604
{
605605
"originalSources": [
606-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-daemon-service/readme.md",
607-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-daemon-service/variables.tf",
608-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-daemon-service/outputs.tf"
606+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-daemon-service/readme.md",
607+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-daemon-service/variables.tf",
608+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-daemon-service/outputs.tf"
609609
],
610610
"sourcePlugin": "module-catalog-api",
611-
"hash": "94fb107ca816e29a9c1115b61a0fcb63"
611+
"hash": "cc547e6879ea9a6df3ef6de046323384"
612612
}
613613
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-deploy-check-binaries/ecs-deploy-check-binaries.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="Amazon ECS" version="0.35.9" lastModifiedVersion="0.35.3"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.35.10" lastModifiedVersion="0.35.3"/>
1313

1414
# ECS Deploy Check Scripts
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-deploy-check-binaries" 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-ecs/tree/v0.35.10/modules/ecs-deploy-check-binaries" 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-ecs/releases/tag/v0.35.3" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -108,11 +108,11 @@ pyenv shell 3.8.0 3.9.0 3.10.0 3.11.0
108108
<!-- ##DOCS-SOURCER-START
109109
{
110110
"originalSources": [
111-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-deploy-check-binaries/readme.md",
112-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-deploy-check-binaries/variables.tf",
113-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-deploy-check-binaries/outputs.tf"
111+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-deploy-check-binaries/readme.md",
112+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-deploy-check-binaries/variables.tf",
113+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-deploy-check-binaries/outputs.tf"
114114
],
115115
"sourcePlugin": "module-catalog-api",
116-
"hash": "3dbb4cd7741a1dd15d513c99ddee6aed"
116+
"hash": "a1454ad1e0c1c95036b4c825a7750415"
117117
}
118118
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-deploy/ecs-deploy.md

Lines changed: 7 additions & 7 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="Amazon ECS" version="0.35.9" lastModifiedVersion="0.35.3"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.35.10" lastModifiedVersion="0.35.3"/>
1313

1414
# ECS Deployment Scripts
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-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-ecs/tree/v0.35.10/modules/ecs-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-ecs/releases/tag/v0.35.3" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -48,7 +48,7 @@ The `run-ecs-task` script assumes you already have the following:
4848
resource](https://www.terraform.io/docs/providers/aws/r/ecs_task_definition.html). You'll need to know the family
4949
name and revision of the ECS Task Definition you want to run.
5050

51-
Check out the [deploy-ecs-task example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/examples/deploy-ecs-task) for working sample code of both of the above.
51+
Check out the [deploy-ecs-task example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/examples/deploy-ecs-task) for working sample code of both of the above.
5252

5353
To run the ECS Task Definition `db-backup` at revision `3` in an ECS Cluster named `ecs-stage` in `us-west-2`, use the
5454
following command:
@@ -96,11 +96,11 @@ container instead of the command configured in the Task Definition.
9696
<!-- ##DOCS-SOURCER-START
9797
{
9898
"originalSources": [
99-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-deploy/readme.md",
100-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-deploy/variables.tf",
101-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-deploy/outputs.tf"
99+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-deploy/readme.md",
100+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-deploy/variables.tf",
101+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-deploy/outputs.tf"
102102
],
103103
"sourcePlugin": "module-catalog-api",
104-
"hash": "47f27122685df1c44d019e80529b07fe"
104+
"hash": "4a9b164b25cb4f9a3963d0302fa11513"
105105
}
106106
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-fargate/ecs-fargate.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="Amazon ECS" version="0.35.9" lastModifiedVersion="0.24.1"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.35.10" lastModifiedVersion="0.24.1"/>
1313

1414
# Fargate Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-fargate" 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-ecs/tree/v0.35.10/modules/ecs-fargate" 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-ecs/releases/tag/v0.24.1" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -24,11 +24,11 @@ guide in [the release notes](https://github.com/gruntwork-io/terraform-aws-ecs/r
2424
<!-- ##DOCS-SOURCER-START
2525
{
2626
"originalSources": [
27-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-fargate/readme.md",
28-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-fargate/variables.tf",
29-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.9/modules/ecs-fargate/outputs.tf"
27+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-fargate/readme.md",
28+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-fargate/variables.tf",
29+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.35.10/modules/ecs-fargate/outputs.tf"
3030
],
3131
"sourcePlugin": "module-catalog-api",
32-
"hash": "fb5b15cee72fa9cb609b78622ca2a20f"
32+
"hash": "d3fb132bab1ee87c5979117a13e357c2"
3333
}
3434
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)