Skip to content

Commit 84bf38e

Browse files
committed
Merge remote-tracking branch 'origin/master' into predictive-scaling
2 parents 14b4bca + be968fc commit 84bf38e

File tree

30 files changed

+80
-35
lines changed

30 files changed

+80
-35
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.100.0
3+
rev: v1.101.0
44
hooks:
55
- id: terraform_wrapper_module_for_each
66
- id: terraform_fmt

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [6.6.1](https://github.com/terraform-aws-modules/terraform-aws-ecs/compare/v6.6.0...v6.6.1) (2025-10-02)
6+
7+
8+
### Bug Fixes
9+
10+
* Correct logic for determining VPC lookup via subnets ([#358](https://github.com/terraform-aws-modules/terraform-aws-ecs/issues/358)) ([7e57f08](https://github.com/terraform-aws-modules/terraform-aws-ecs/commit/7e57f083c26cb91c36c3cd0b7dc0105fcaeb188b))
11+
12+
## [6.6.0](https://github.com/terraform-aws-modules/terraform-aws-ecs/compare/v6.5.0...v6.6.0) (2025-10-01)
13+
14+
15+
### Features
16+
17+
* Allow specifying VPC ID used by service security group in lieu of deriving from subnets provided ([#353](https://github.com/terraform-aws-modules/terraform-aws-ecs/issues/353)) ([ac8f420](https://github.com/terraform-aws-modules/terraform-aws-ecs/commit/ac8f42074a3f8a061066eeb707dd913eaf106b1b))
18+
19+
## [6.5.0](https://github.com/terraform-aws-modules/terraform-aws-ecs/compare/v6.4.0...v6.5.0) (2025-10-01)
20+
21+
22+
### Features
23+
24+
* Allow Toggling `initProcessEnabled` independent of `enable_execute_command` ([#355](https://github.com/terraform-aws-modules/terraform-aws-ecs/issues/355)) ([b7054cd](https://github.com/terraform-aws-modules/terraform-aws-ecs/commit/b7054cd206b3ab9a0301f9a011e61e4e1bebc8de))
25+
26+
## [6.4.0](https://github.com/terraform-aws-modules/terraform-aws-ecs/compare/v6.3.0...v6.4.0) (2025-09-18)
27+
28+
29+
### Features
30+
31+
* Add `lifecycle_hook.hook_details` ([#354](https://github.com/terraform-aws-modules/terraform-aws-ecs/issues/354)) ([73b7104](https://github.com/terraform-aws-modules/terraform-aws-ecs/commit/73b710487b298613718e5e92f6ca091e039b8771))
32+
533
## [6.3.0](https://github.com/terraform-aws-modules/terraform-aws-ecs/compare/v6.2.2...v6.3.0) (2025-08-29)
634

735

README.md

Lines changed: 3 additions & 2 deletions
Large diffs are not rendered by default.

examples/complete/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ Note that this example may create resources which will incur monetary charges on
2727
| Name | Version |
2828
|------|---------|
2929
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
30-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.11 |
30+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.14 |
3131

3232
## Providers
3333

3434
| Name | Version |
3535
|------|---------|
36-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.11 |
36+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.14 |
3737

3838
## Modules
3939

examples/complete/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ module "ecs" {
177177
]
178178

179179
subnet_ids = module.vpc.private_subnets
180+
vpc_id = module.vpc.vpc_id
180181
availability_zone_rebalancing = "ENABLED"
181182
security_group_ingress_rules = {
182183
alb_3000 = {

examples/complete/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.11"
7+
version = ">= 6.14"
88
}
99
}
1010
}

examples/container-definition/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Note that this example may create resources which will incur monetary charges on
2222
| Name | Version |
2323
|------|---------|
2424
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
25-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.11 |
25+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.14 |
2626
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 3.2 |
2727

2828
## Providers

examples/container-definition/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.11"
7+
version = ">= 6.14"
88
}
99
null = {
1010
source = "hashicorp/null"

examples/ec2-autoscaling/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ Note that this example may create resources which will incur monetary charges on
2727
| Name | Version |
2828
|------|---------|
2929
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
30-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.11 |
30+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.14 |
3131

3232
## Providers
3333

3434
| Name | Version |
3535
|------|---------|
36-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.11 |
36+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.14 |
3737

3838
## Modules
3939

examples/ec2-autoscaling/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.11"
7+
version = ">= 6.14"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)