do not recreate certificate every deploy

This commit is contained in:
Daniel Roth 2026-03-17 17:02:52 +00:00
parent 8f114d4e0e
commit 3aefba7ba7

View file

@ -4,7 +4,7 @@ resource "aws_acm_certificate" "this" {
validation_method = "DNS" validation_method = "DNS"
lifecycle { lifecycle {
create_before_destroy = true create_before_destroy = false
} }
tags = var.tags tags = var.tags