Skip to content

Commit

Permalink
Accelerator minimal network deployment updates (#715)
Browse files Browse the repository at this point in the history
* add new switch parameter

* formatting
  • Loading branch information
picccard authored Jan 25, 2024
1 parent 5e40e5a commit d738dc9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions docs/wiki/Accelerator.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,11 +267,17 @@ Here you can find the detailed changes for a minimal hub-and-spoke deployment. F
"value": false
},
```
* Remove VPN or ExpressRoute gateways: edit config/custom-parameters/hubNetworking.parameters.all.json and set parVpnGatewayConfig and/or parExpressRouteGatewayConfig to an empty object. For vWAN, look for the **parVpnGatewayEnabled** and **parExpressRouteGatewayEnabled** parameters instead.
* Remove VPN or ExpressRoute gateways: edit config/custom-parameters/hubNetworking.parameters.all.json and set **parVpnGatewayEnabled** and/or **parExpressRouteGatewayEnabled** to **false**. Optionally the parameter **parVpnGatewayConfig** and/or **parExpressRouteGatewayConfig** could be set to an empty object or removed. For vWAN, look for the **parVpnGatewayEnabled** and **parExpressRouteGatewayEnabled** parameters instead.
```yaml
"parVpnGatewayEnabled": {
"value": false
},
"parVpnGatewayConfig": {
"value": {}
},
"parExpressRouteGatewayEnabled": {
"value": false
},
"parExpressRouteGatewayConfig": {
"value": {}
},
Expand All @@ -298,7 +304,7 @@ We recommend that you do not modify the ALZ Bicep modules directly within the up
[String]$TemplateFile = "config\custom-modules\logging.bicep",
```
1. In order to trigger new deployments when subsequent changes are made, add the new module file path to the path-based filter workflow trigger in the ALZ-Bicep-1 workflow file as shown below:
1. In order to trigger new deployments when subsequent changes are made, add the new module file path to the path-based filter workflow trigger in the ALZ-Bicep-1-Core workflow file as shown below:
```yaml
on:
Expand Down

0 comments on commit d738dc9

Please sign in to comment.