Skip to content

Commit

Permalink
fix: Add missing pid_mode to root module (#204)
Browse files Browse the repository at this point in the history
* Update main.tf

Missing pid_mod.

* fix: Change placement to be alphabetical

---------

Co-authored-by: Bryant Biggs <[email protected]>
  • Loading branch information
levisbakalinsky-ballys and bryantbiggs authored Jul 5, 2024
1 parent 6b52c96 commit c9cab6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.90.0
rev: v1.92.0
hooks:
- id: terraform_fmt
- id: terraform_wrapper_module_for_each
Expand Down
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ module "service" {
ipc_mode = try(each.value.ipc_mode, null)
memory = try(each.value.memory, 2048)
network_mode = try(each.value.network_mode, "awsvpc")
pid_mode = try(each.value.pid_mode, null)
proxy_configuration = try(each.value.proxy_configuration, {})
requires_compatibilities = try(each.value.requires_compatibilities, ["FARGATE"])
runtime_platform = try(each.value.runtime_platform, {
Expand Down

0 comments on commit c9cab6f

Please sign in to comment.