Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reference latest patch module #7111

Merged
merged 13 commits into from
Jul 16, 2024
6 changes: 3 additions & 3 deletions terraform/environments/hmpps-domain-services/patch.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "test-2a" {
#checkov:skip=CKV_TF_1:Module registry does not support commit hashes for versions
# This is an internal module so commit hashes are not needed
source = "github.com/ministryofjustice/modernisation-platform-terraform-ssm-patching.git?ref=ssm-patch-module-refactor"
source = "github.com/ministryofjustice/modernisation-platform-terraform-ssm-patching.git?ref=v3.1.0"
count = local.is-test == true ? 1 : 0
providers = {
aws.bucket-replication = aws
Expand Down Expand Up @@ -30,7 +30,7 @@ module "test-2a" {
module "test-2c" {
#checkov:skip=CKV_TF_1:Module registry does not support commit hashes for versions
# This is an internal module so commit hashes are not needed
source = "github.com/ministryofjustice/modernisation-platform-terraform-ssm-patching.git?ref=ssm-patch-module-refactor"
source = "github.com/ministryofjustice/modernisation-platform-terraform-ssm-patching.git?ref=v3.1.0"
count = local.is-test == true ? 1 : 0
providers = {
aws.bucket-replication = aws
Expand Down Expand Up @@ -59,7 +59,7 @@ module "test-2c" {
module "development" {
#checkov:skip=CKV_TF_1:Module registry does not support commit hashes for versions
# This is an internal module so commit hashes are not needed
source = "github.com/ministryofjustice/modernisation-platform-terraform-ssm-patching.git?ref=ssm-patch-module-refactor"
source = "github.com/ministryofjustice/modernisation-platform-terraform-ssm-patching.git?ref=v3.1.0"
count = local.is-development == true ? 1 : 0
providers = {
aws.bucket-replication = aws
Expand Down
Loading