@@ -3,17 +3,27 @@ using './main.bicep'
33param solutionName = readEnvironmentVariable ('AZURE_ENV_NAME' )
44param location = readEnvironmentVariable ('AZURE_LOCATION' )
55
6- // //*******************************************************************************
7- // // WAF-aligned configuration
8- // //*******************************************************************************
6+
7+ //**************************************************************************************************
8+ // WAF-aligned configurations:
9+ // monitoring
10+ // scaling
11+ // redundancy
12+ // private networking
13+ //*************************************************************************************************
914
1015param enableMonitoring = true
1116param enableScaling = true
12- param enableRedundancy = true
13- //param secondaryLocation = 'uksouth' // TODO - test this
1417
18+ //*************************************************************************************************
19+ // Redundancy, for azure storage and cosmos DB, set to true if you want to enable redundancy
20+ param enableRedundancy = false // If true, need to set secondaryLocation
21+ //param secondaryLocation = 'westus2' // Set the secondary location for redundancy
22+ //*************************************************************************************************
23+
24+ //*************************************************************************************************
25+ // Private networking
1526param enablePrivateNetworking = true
1627param vmAdminUsername = 'JumpboxAdminUser'
1728param vmAdminPassword = 'JumpboxAdminP@ssw0rd1234!'
18-
19-
29+ //*************************************************************************************************
0 commit comments