Skip to content

Commit

Permalink
Merge pull request #7996 from ministryofjustice/issue/7689-testing
Browse files Browse the repository at this point in the history
Issue 7689 - Bug fixes from testing.
  • Loading branch information
mikereiddigital committed Sep 20, 2024
2 parents 2cf0277 + 748226f commit dc9d096
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/format-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
changes=$(git diff --staged --name-only)
if [ -z "$changes" ]; then
echo "No changes detected."
echo "Exiting workflow using status 1 without reporting an error"
exit 1
else
echo "Changes detected."
echo "changes=true" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions terraform/environments/sprinkler/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ locals {

)

environment = "sandbox"
environment = "sandbox"
vpc_name = var.networking[0].business-unit
subnet_set = var.networking[0].set
subnet_set = var.networking[0].set
vpc_all = "${local.vpc_name}-${local.environment}"
subnet_set_name = "${var.networking[0].business-unit}-${local.environment}-${var.networking[0].set}"

Expand Down

0 comments on commit dc9d096

Please sign in to comment.