Skip to content

Commit

Permalink
Merge pull request #367 from DFE-Digital/tf-correct-bootstrap-rg
Browse files Browse the repository at this point in the history
Fix incorrect resource group environment names
  • Loading branch information
albal authored Jan 12, 2024
2 parents 9ccb0d9 + 49f4daf commit a5081ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Terraform-bootstrap/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ variable "env_name" {
type = map(string)
default = {
Dev = "Dev"
Test = "Test"
Test = "Dev"
Load-Test = "Dev"
Pre-Prod = "Pre-Pro"
Pre-Prod = "Test"
Prod = "Prod"
}
description = "Name of Environment"
Expand Down

0 comments on commit a5081ca

Please sign in to comment.