Skip to content

Commit

Permalink
chore: Update AWS S3 bucket names for Terraform state backend
Browse files Browse the repository at this point in the history
  • Loading branch information
nilgaar committed Jul 26, 2024
1 parent 0e9b50f commit 5dbfa9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions IaC/aws/tofu/_backend.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
variable "bucket_name" {
default = "tofu-terraform-state"
default = "tofu-backend-state"
}

variable "dynamodb_table_name" {
default = "tofu-terraform-state-lock"
default = "tofu-state-lock"
}

resource "aws_s3_bucket" "state_backend" {
Expand All @@ -15,7 +15,7 @@ resource "aws_s3_bucket" "state_backend" {
}

lifecycle {
prevent_destroy = true
prevent_destroy = false
}
}

Expand Down

0 comments on commit 5dbfa9d

Please sign in to comment.