diff --git a/common-dev-assets b/common-dev-assets index 347487f8..5df44bd0 160000 --- a/common-dev-assets +++ b/common-dev-assets @@ -1 +1 @@ -Subproject commit 347487f8935050c157b9e1d9a5a5b255ae77c034 +Subproject commit 5df44bd0ea47050582fd373e14b2e0b10d34bba1 diff --git a/solutions/standard/catalogValidationValues.json.template b/solutions/standard/catalogValidationValues.json.template index 069d9f92..6f0c3500 100644 --- a/solutions/standard/catalogValidationValues.json.template +++ b/solutions/standard/catalogValidationValues.json.template @@ -2,6 +2,6 @@ "ibmcloud_api_key": $VALIDATION_APIKEY, "resource_group_name": $PREFIX, "service_plan": "trial", - "existing_kms_instance_crn": $HPCS_US_SOUTH_CRN, + "existing_kms_instance_crn": $HPCS_US_EAST_CRN, "region": "ca-tor" } diff --git a/tests/other_test.go b/tests/other_test.go index 48230250..45260907 100644 --- a/tests/other_test.go +++ b/tests/other_test.go @@ -55,8 +55,8 @@ func TestFSCloudInSchematics(t *testing.T) { {Name: "ibmcloud_api_key", Value: options.RequiredEnvironmentVars["TF_VAR_ibmcloud_api_key"], DataType: "string", Secure: true}, {Name: "region", Value: validRegions[rand.Intn(len(validRegions))], DataType: "string"}, {Name: "prefix", Value: options.Prefix, DataType: "string"}, - {Name: "existing_kms_instance_guid", Value: permanentResources["hpcs_south"], DataType: "string"}, - {Name: "kms_key_crn", Value: permanentResources["hpcs_south_root_key_crn"], DataType: "string"}, + {Name: "existing_kms_instance_guid", Value: permanentResources["hpcs_east"], DataType: "string"}, + {Name: "kms_key_crn", Value: permanentResources["hpcs_east_root_key_crn"], DataType: "string"}, {Name: "sm_service_plan", Value: "trial", DataType: "string"}, } diff --git a/tests/pr_test.go b/tests/pr_test.go index d5ea0a1a..b16eed02 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -108,7 +108,7 @@ func TestRunDASolutionSchematics(t *testing.T) { {Name: "region", Value: validRegions[rand.Intn(len(validRegions))], DataType: "string"}, {Name: "resource_group_name", Value: options.Prefix, DataType: "string"}, {Name: "service_plan", Value: "trial", DataType: "string"}, - {Name: "existing_kms_instance_crn", Value: permanentResources["hpcs_south_crn"], DataType: "string"}, + {Name: "existing_kms_instance_crn", Value: permanentResources["hpcs_east_crn"], DataType: "string"}, {Name: "iam_engine_enabled", Value: true, DataType: "bool"}, {Name: "public_engine_enabled", Value: true, DataType: "bool"}, {Name: "private_engine_enabled", Value: true, DataType: "bool"},