Skip to content

Commit

Permalink
[#97] Rename S3 bucket for Terraform state in AWS setup
Browse files Browse the repository at this point in the history
This commit updates the AWS setup for the GovTool project, particularly focusing on the Terraform configuration. The change involves renaming the S3 bucket used for storing Terraform state, aligning it with the ongoing rebranding effort detailed in ticket #111.

Technical Details:
- Updated the S3 bucket name in the `bootstrap-aws-account.sh` script within the `infra/terraform` directory. Changed from `vva-terraform-state` to `govtool-terraform-state`.
- Similarly, modified the Terraform backend configuration in `versions.tf`. The `bucket` field now uses the new `govtool-terraform-state` name.
  • Loading branch information
placek authored and MSzalowski committed Feb 23, 2024
1 parent d08208d commit 4c05e65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion infra/terraform/bootstrap-aws-account.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

state_bucket="vva-terraform-state"
state_bucket="govtool-terraform-state"
lock_table="vva-terraform-locks"
region="eu-west-1"

Expand Down
2 changes: 1 addition & 1 deletion infra/terraform/versions.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
terraform {
backend "s3" {
bucket = "vva-terraform-state"
bucket = "govtool-terraform-state"
key = "terraform.tfstate"
region = "eu-west-1"
dynamodb_table = "vva-terraform-locks"
Expand Down

0 comments on commit 4c05e65

Please sign in to comment.