UNCLASSIFIED

Commit 12392123 authored by michaelmcleroy's avatar michaelmcleroy
Browse files

Merge branch 'bug/terraform-cache' into 'main'

fix: unique s3 bucket based on cluster name

See merge request !5
parents 984aa7c6 2f5995d4
......@@ -2,6 +2,12 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.1]
### Changed
- Terraform cache S3 bucket created off of name in environment
## [1.0.0]
### Added
......
......@@ -27,7 +27,7 @@ remote_state {
config = {
encrypt = true
key = format("%s/terraform.tfstate", path_relative_to_include())
bucket = "p1-bigbang-live-tf-states-${local.env.region}"
bucket = "${local.env.name}-terraform-state"
region = local.env.region
}
}
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment