Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 3ef1f13

Browse files
committed
fix gc vs commercial Fn::If order
1 parent 37ea1f6 commit 3ef1f13

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

DeepSecurity/Quickstart/TMQuickStartRHEL.template

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@
273273
{
274274
"Fn::If" : [
275275
"RegionIsUsGovWest1",
276-
{ "Fn::FindInMap" : [ "Parameters", "CfnUrlPrefix", "CommericalPrefix" ] },
277-
{ "Fn::FindInMap" : [ "Parameters", "CfnUrlPrefix", "GovCloudPrefix" ] }
276+
{ "Fn::FindInMap" : [ "Parameters", "CfnUrlPrefix", "GovCloudPrefix" ] },
277+
{ "Fn::FindInMap" : [ "Parameters", "CfnUrlPrefix", "CommericalPrefix" ] }
278278
]
279279
},
280280
"RHEL/MasterRH96.template"
@@ -364,8 +364,8 @@
364364
"CfnUrlPrefix" : {
365365
"Fn::If" : [
366366
"RegionIsUsGovWest1",
367-
{ "Fn::FindInMap" : [ "Parameters", "CfnUrlPrefix", "CommericalPrefix" ] },
368-
{ "Fn::FindInMap" : [ "Parameters", "CfnUrlPrefix", "GovCloudPrefix" ] }
367+
{ "Fn::FindInMap" : [ "Parameters", "CfnUrlPrefix", "GovCloudPrefix" ] },
368+
{ "Fn::FindInMap" : [ "Parameters", "CfnUrlPrefix", "CommericalPrefix" ] }
369369
]
370370
}
371371
}

DeepSecurity/RHEL/DSM96RH.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -810,8 +810,8 @@
810810
{
811811
"Fn::If" : [
812812
"RegionIsUsGovWest1",
813-
"Common/Scripts/createCloudAccount",
814-
"Common/Scripts/createCloudAccountGc"
813+
"Common/Scripts/createCloudAccountGc",
814+
"Common/Scripts/createCloudAccount"
815815
]
816816
}
817817
]

0 commit comments

Comments
 (0)