Merge pull request #902 from Hestia-Homes/deploy-fastapi-with-terraform

Deploy fastapi with terraform: dont recreate certificates every time
This commit is contained in:
Jun-te Kim 2026-03-17 17:10:43 +00:00 committed by GitHub
commit f727e8336e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -246,7 +246,7 @@ etl/epc/local_data/*
/backend/condition/sample_data/peabody/*
*.DS_Store
infrastructure/terraform/.terraform*
**/.terraform*
# Don't commit packages up serverless packages
.serverless

View file

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