Skip to content

Commit c9cab6f

Browse files
fix: Add missing pid_mode to root module (#204)
* Update main.tf Missing pid_mod. * fix: Change placement to be alphabetical --------- Co-authored-by: Bryant Biggs <[email protected]>
1 parent 6b52c96 commit c9cab6f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.pre-commit-config.yaml

+1-1
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

main.tf

+1
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)