Skip to content

Commit aae5dae

Browse files
Updated with the [latest changes](https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.38.8) from the [email protected] source branch. (#2488)
Co-authored-by: docs-sourcer[bot] <99042413+docs-sourcer[bot]@users.noreply.github.com>
1 parent 542fa08 commit aae5dae

File tree

9 files changed

+116
-101
lines changed

9 files changed

+116
-101
lines changed

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

Lines changed: 32 additions & 17 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.38.7" lastModifiedVersion="0.38.6"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.38.8" lastModifiedVersion="0.38.8"/>
1313

1414
# ECS Cluster Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/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.38.8/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.38.6" 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.38.8" 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.38.7/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.38.8/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.38.7/modules/ecs-service/README.adoc).
35+
See the [service module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/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.38.7/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.38.8/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
@@ -127,8 +127,8 @@ To deploy a change such as rolling out a new AMI to all ECS Instances:
127127
python3 roll-out-ecs-cluster-update.py --asg-name ASG_NAME --cluster-name CLUSTER_NAME --aws-region AWS_REGION
128128
```
129129
130-
If you have your output variables configured as shown in [outputs.tf](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/examples/docker-service-with-elb/outputs.tf)
131-
of the [docker-service-with-elb example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/examples/docker-service-with-elb), you can use the `terraform output`
130+
If you have your output variables configured as shown in [outputs.tf](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/examples/docker-service-with-elb/outputs.tf)
131+
of the [docker-service-with-elb example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/examples/docker-service-with-elb), you can use the `terraform output`
132132
command to fill in most of the arguments automatically:
133133
134134
```
@@ -181,8 +181,8 @@ To deploy a change such as rolling out a new AMI to all ECS Instances:
181181
python3 asg-instance-refresh.py --asg-name ASG_NAME --aws-region AWS_REGION
182182
```
183183
184-
If you have your output variables configured as shown in [outputs.tf](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/examples/docker-service-with-elb/outputs.tf)
185-
of the [docker-service-with-elb example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/examples/docker-service-with-elb), you can use the `terraform output`
184+
If you have your output variables configured as shown in [outputs.tf](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/examples/docker-service-with-elb/outputs.tf)
185+
of the [docker-service-with-elb example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/examples/docker-service-with-elb), you can use the `terraform output`
186186
command to fill in most of the arguments automatically:
187187
188188
```
@@ -235,7 +235,7 @@ enable Capacity Providers on an existing ECS cluster that did not have Capacity
235235
instances to ensure all the instances get associated with the new Capacity Provider.
236236

237237
To rotate the instances, you can run the
238-
[roll-out-ecs-cluster-update.py](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-cluster/roll-out-ecs-cluster-update.py)
238+
[roll-out-ecs-cluster-update.py](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-cluster/roll-out-ecs-cluster-update.py)
239239
script in the `terraform-aws-ecs` module. Refer to the
240240
[documentation](#how-do-you-make-changes-to-the-ec2-instances-in-the-cluster)
241241
for more information on the script.
@@ -253,7 +253,7 @@ for more information on the script.
253253
254254
module "ecs_cluster" {
255255
256-
source = "git::[email protected]:gruntwork-io/terraform-aws-ecs.git//modules/ecs-cluster?ref=v0.38.7"
256+
source = "git::[email protected]:gruntwork-io/terraform-aws-ecs.git//modules/ecs-cluster?ref=v0.38.8"
257257
258258
# ----------------------------------------------------------------------------------------------------
259259
# REQUIRED VARIABLES
@@ -493,6 +493,9 @@ module "ecs_cluster" {
493493
# is disabled
494494
instance_refresh_strategy = null
495495
496+
# Whether to update Default Version for the Launch Template with each update.
497+
launch_template_update_default_version = true
498+
496499
# Maximum amount of time, in seconds, that an instance can be in service,
497500
# values must be either equal to 0 or between 86400 and 31536000 seconds.
498501
max_instance_lifetime = null
@@ -542,7 +545,7 @@ module "ecs_cluster" {
542545
# ------------------------------------------------------------------------------------------------------
543546
544547
terraform {
545-
source = "git::[email protected]:gruntwork-io/terraform-aws-ecs.git//modules/ecs-cluster?ref=v0.38.7"
548+
source = "git::[email protected]:gruntwork-io/terraform-aws-ecs.git//modules/ecs-cluster?ref=v0.38.8"
546549
}
547550
548551
inputs = {
@@ -785,6 +788,9 @@ inputs = {
785788
# is disabled
786789
instance_refresh_strategy = null
787790
791+
# Whether to update Default Version for the Launch Template with each update.
792+
launch_template_update_default_version = true
793+
788794
# Maximum amount of time, in seconds, that an instance can be in service,
789795
# values must be either equal to 0 or between 86400 and 31536000 seconds.
790796
max_instance_lifetime = null
@@ -1379,6 +1385,15 @@ Strategy to use for instance refresh. If not specified then instance_refresh is
13791385
<HclListItemDefaultValue defaultValue="null"/>
13801386
</HclListItem>
13811387

1388+
<HclListItem name="launch_template_update_default_version" requirement="optional" type="bool">
1389+
<HclListItemDescription>
1390+
1391+
Whether to update Default Version for the Launch Template with each update.
1392+
1393+
</HclListItemDescription>
1394+
<HclListItemDefaultValue defaultValue="true"/>
1395+
</HclListItem>
1396+
13821397
<HclListItem name="max_instance_lifetime" requirement="optional" type="number">
13831398
<HclListItemDescription>
13841399

@@ -1480,11 +1495,11 @@ Set this variable to true to enable the use of Instance Metadata Service Version
14801495
<!-- ##DOCS-SOURCER-START
14811496
{
14821497
"originalSources": [
1483-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-cluster/readme.md",
1484-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-cluster/variables.tf",
1485-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-cluster/outputs.tf"
1498+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-cluster/readme.md",
1499+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-cluster/variables.tf",
1500+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-cluster/outputs.tf"
14861501
],
14871502
"sourcePlugin": "module-catalog-api",
1488-
"hash": "fdc00d45f0d12f69c0504fb5d3a04f7f"
1503+
"hash": "2fcc520790e7d2644657c9277e4fcbe4"
14891504
}
14901505
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-daemon-service/ecs-daemon-service.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="Amazon ECS" version="0.38.7" lastModifiedVersion="0.38.7"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.38.8" lastModifiedVersion="0.38.7"/>
1313

1414
# ECS Daemon Service Module
1515

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

@@ -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.38.7/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.38.8/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::[email protected]:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v0.38.7"
85+
source = "git::[email protected]:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v0.38.8"
8686
8787
# ----------------------------------------------------------------------------------------------------
8888
# REQUIRED VARIABLES
@@ -204,7 +204,7 @@ module "ecs_daemon_service" {
204204
# ------------------------------------------------------------------------------------------------------
205205
206206
terraform {
207-
source = "git::[email protected]:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v0.38.7"
207+
source = "git::[email protected]:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v0.38.8"
208208
}
209209
210210
inputs = {
@@ -587,11 +587,11 @@ If true, Terraform will wait for the service to reach a steady state—as in, th
587587
<!-- ##DOCS-SOURCER-START
588588
{
589589
"originalSources": [
590-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-daemon-service/readme.md",
591-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-daemon-service/variables.tf",
592-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-daemon-service/outputs.tf"
590+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-daemon-service/readme.md",
591+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-daemon-service/variables.tf",
592+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-daemon-service/outputs.tf"
593593
],
594594
"sourcePlugin": "module-catalog-api",
595-
"hash": "0930c2573a2e26402eaaab408ad236c2"
595+
"hash": "d9b9034ccf341c712966efab77ca4dc5"
596596
}
597597
##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.38.7" lastModifiedVersion="0.37.0"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.38.8" lastModifiedVersion="0.37.0"/>
1313

1414
# ECS Deployment Scripts
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/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.38.8/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.37.0" 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.38.7/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.38.8/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:
@@ -95,11 +95,11 @@ container instead of the command configured in the Task Definition.
9595
<!-- ##DOCS-SOURCER-START
9696
{
9797
"originalSources": [
98-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-deploy/readme.md",
99-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-deploy/variables.tf",
100-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-deploy/outputs.tf"
98+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-deploy/readme.md",
99+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-deploy/variables.tf",
100+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-deploy/outputs.tf"
101101
],
102102
"sourcePlugin": "module-catalog-api",
103-
"hash": "e2e50bf388676d1161484578f4b4706c"
103+
"hash": "cb3a219b4950cd579b640100af9725ad"
104104
}
105105
##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.38.7" lastModifiedVersion="0.24.1"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.38.8" lastModifiedVersion="0.24.1"/>
1313

1414
# Fargate Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/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.38.8/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

@@ -23,11 +23,11 @@ guide in [the release notes](https://github.com/gruntwork-io/terraform-aws-ecs/r
2323
<!-- ##DOCS-SOURCER-START
2424
{
2525
"originalSources": [
26-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-fargate/readme.md",
27-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-fargate/variables.tf",
28-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-fargate/outputs.tf"
26+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-fargate/readme.md",
27+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-fargate/variables.tf",
28+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-fargate/outputs.tf"
2929
],
3030
"sourcePlugin": "module-catalog-api",
31-
"hash": "dca0e44179ea317005e5f5d6172181ca"
31+
"hash": "3916866e640e6d4b9050743ff5b223e7"
3232
}
3333
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-scripts/ecs-scripts.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.38.7" lastModifiedVersion="0.32.1"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="0.38.8" lastModifiedVersion="0.32.1"/>
1313

1414
# ECS Scripts
1515

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

@@ -31,7 +31,7 @@ You can install the helpers using the [Gruntwork Installer](https://github.com/g
3131
gruntwork-install --module-name "ecs-scripts" --repo "https://github.com/gruntwork-io/terraform-aws-ecs" --tag "0.0.1"
3232
```
3333

34-
For an example, see the [Packer](https://www.packer.io/) template under [/examples/example-ecs-instance-ami/build.json](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/examples/example-ecs-instance-ami/build.json).
34+
For an example, see the [Packer](https://www.packer.io/) template under [/examples/example-ecs-instance-ami/build.json](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/examples/example-ecs-instance-ami/build.json).
3535

3636
## Using the configure-ecs-instance helper
3737

@@ -79,11 +79,11 @@ Run `configure-ecs-instance --help` to see all available options.
7979
<!-- ##DOCS-SOURCER-START
8080
{
8181
"originalSources": [
82-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-scripts/readme.md",
83-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-scripts/variables.tf",
84-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.7/modules/ecs-scripts/outputs.tf"
82+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-scripts/readme.md",
83+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-scripts/variables.tf",
84+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v0.38.8/modules/ecs-scripts/outputs.tf"
8585
],
8686
"sourcePlugin": "module-catalog-api",
87-
"hash": "4bdecdd6e5155c8951f84195aa20f51a"
87+
"hash": "823a8644b4c73b9b34474abf4c11e743"
8888
}
8989
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)