Merge pull request #856 from Hestia-Homes/main

Deploy fastapi with terraform: output tfstate bucket name
This commit is contained in:
Daniel Roth 2026-03-12 11:29:35 +00:00 committed by GitHub
commit 1f552b51a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -530,6 +530,10 @@ module "ara_fast_api_state_bucket" {
bucket_name = "ara-fast-api-terraform-state"
}
output "ara_fast_api_state_bucket" {
value = module.ara_fast_api_state_bucket.bucket_name
}
# S3 policy for FastAPI app to read and write from various S3 buckets
module "fast_api_s3_read_and_write" {
source = "../modules/s3_iam_policy"