From c84e80935d23eba3b020885e91d5ca162a02e56b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 19 Mar 2026 09:40:43 +0000 Subject: [PATCH] unique cdn state bucket name --- infrastructure/terraform/cdn/provider.tf | 2 +- infrastructure/terraform/shared/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/cdn/provider.tf b/infrastructure/terraform/cdn/provider.tf index 75e4e4a8..186adc10 100644 --- a/infrastructure/terraform/cdn/provider.tf +++ b/infrastructure/terraform/cdn/provider.tf @@ -7,7 +7,7 @@ terraform { } backend "s3" { - bucket = "cdn-terraform-state" + bucket = "ara-cdn-terraform-state" key = "terraform.tfstate" region = "eu-west-2" } diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 303e6724..c5c96918 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -579,7 +579,7 @@ output "cdn_certificate_state_bucket" { ################################################ module "cdn_state_bucket" { source = "../modules/tf_state_bucket" - bucket_name = "cdn-terraform-state" + bucket_name = "ara-cdn-terraform-state" } output "cdn_state_bucket" {