Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Adding a health_check generates a new task definition revision on every terraform apply #149

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Reformat code
  • Loading branch information
sestrella committed Dec 19, 2023
commit 6b98a1fd8971861a611311df2da0a1e37e884092
4 changes: 2 additions & 2 deletions modules/container-definition/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ locals {

health_check = length(var.health_check) > 0 ? merge({
interval = 30,
retries = 3,
timeout = 5
retries = 3,
timeout = 5
}, var.health_check) : null

definition = {
Expand Down