Skip to content

Commit 1d27733

Browse files
authored
feat: Add updates for Bicep multi-region support (#194)
# Pull Request Add necessary changes to support multi-region networking configurations for ALZ-Bicep. ## Issue Fixes AB#34223 ## Description Description of changes: Update applicable documentation ## License By submitting this pull request, I confirm that my contribution is made under the terms of the projects associated license.
1 parent 09f3e18 commit 1d27733

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

docs/wiki/[User-Guide]-Starter-Module-Bicep-Complete.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ The following table describes the inputs required for the `complete` starter mod
1212
| Input | Placeholder | Description |
1313
| - | -- | --- |
1414
| `Prefix` | `landing-zone` | This is the defaut prefix for names of resources and management groups. |
15+
| `SecondaryLocation` | `westus2` | The secondary location for the landing zone. Only used if the `networkType` has a multi-region configuration specified. |
1516
| `Environment` | `live` | The environment name for the landing zone. This can be any lower case string. (e.g. `live` or `canary`) |
16-
| `networkType` | `hubNetworking` | The type of network configuration to deploy. Currently only `hubNetworking`, `vwanConnectivity` or `none` are supported. |
17+
| `networkType` | `hubNetworking` | The type of network configuration to deploy. Currently only `hubNetworking`, `hubNetworkingMultiRegion`, `vwanConnectivity,` `vwanConnectivityMultiRegion` or `none` are supported. |
1718
| `SecurityContact` | `<email-address>` | The email address of the security contact for the landing zone. |
1819

1920
[//]: # (************************)

docs/wiki/examples/powershell-inputs/inputs-azure-devops-bicep-complete.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ create_branch_policies: "true"
3636
# Complete Starter Module Specific Variables
3737
# (Details: https://github.com/Azure/ALZ-PowerShell-Module/wiki/%5BUser-Guide%5D-Starter-Module-Bicep-Complete)
3838
Prefix: "alz"
39+
SecondaryLocation: ""
3940
Environment: "live"
4041
networkType: "hubNetworking"
4142
SecurityContact: "<email-address>"

docs/wiki/examples/powershell-inputs/inputs-github-bicep-complete.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ create_branch_policies: "true"
3333
# Starter Module Specific Variables
3434
# (Details: https://github.com/Azure/ALZ-PowerShell-Module/wiki/%5BUser-Guide%5D-Starter-Module-Bicep-Complete)
3535
Prefix: "alz"
36+
SecondaryLocation: ""
3637
Environment: "live"
3738
networkType: "hubNetworking"
3839
SecurityContact: "<email-address>"

docs/wiki/examples/powershell-inputs/inputs-local-bicep-complete.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ postfix_number: "1"
2626
# Starter Module Specific Variables
2727
# (Details: https://github.com/Azure/ALZ-PowerShell-Module/wiki/%5BUser-Guide%5D-Starter-Module-Bicep-Complete)
2828
Prefix: "alz"
29+
SecondaryLocation: ""
2930
Environment: "live"
3031
networkType: "hubNetworking"
3132
SecurityContact: "<email-address>"

0 commit comments

Comments
 (0)