Skip to content

Commit

Permalink
timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
georgepstaylor committed Mar 12, 2024
1 parent 1e8142d commit 8df5949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/service.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "aws_ecs_service" "default" {

force_new_deployment = var.force_new_deployment
triggers = var.force_new_deployment ? {
update = timestamp() # force update in-place every apply
update = plantimestamp() # force update in-place every apply
} : null

dynamic "load_balancer" {
Expand Down Expand Up @@ -75,7 +75,7 @@ resource "aws_ecs_service" "ignore_changes" {
force_new_deployment = var.force_new_deployment

triggers = var.force_new_deployment ? {
update = timestamp() # force update in-place every apply
update = plantimestamp() # force update in-place every apply
} : null
dynamic "load_balancer" {
for_each = var.service_load_balancers
Expand Down

0 comments on commit 8df5949

Please sign in to comment.