Skip to content

Commit 289dcff

Browse files
authored
Merge branch 'master' into ebs-support
2 parents 66d5e3e + 048acce commit 289dcff

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
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.90.0
3+
rev: v1.92.0
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_wrapper_module_for_each

CHANGELOG.md

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

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

5+
## [5.11.3](https://github.com/terraform-aws-modules/terraform-aws-ecs/compare/v5.11.2...v5.11.3) (2024-07-05)
6+
7+
8+
### Bug Fixes
9+
10+
* Add missing `pid_mode` to root module ([#204](https://github.com/terraform-aws-modules/terraform-aws-ecs/issues/204)) ([c9cab6f](https://github.com/terraform-aws-modules/terraform-aws-ecs/commit/c9cab6f005379e25ee91d17c7b8d4cb9d8ca9af8))
11+
512
## [5.11.2](https://github.com/terraform-aws-modules/terraform-aws-ecs/compare/v5.11.1...v5.11.2) (2024-05-31)
613

714

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ module "service" {
110110
ipc_mode = try(each.value.ipc_mode, null)
111111
memory = try(each.value.memory, 2048)
112112
network_mode = try(each.value.network_mode, "awsvpc")
113+
pid_mode = try(each.value.pid_mode, null)
113114
proxy_configuration = try(each.value.proxy_configuration, {})
114115
requires_compatibilities = try(each.value.requires_compatibilities, ["FARGATE"])
115116
runtime_platform = try(each.value.runtime_platform, {

0 commit comments

Comments
 (0)