You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update rg name y moving to bicep
* Azure DDoS Protection Standard should be enabled
---------
Co-authored-by: Federico Arambarri <v-fearam>
Co-authored-by: Jason Bouska <[email protected]>
> The location for the deployed resources defaults to the location used for the target resource group. This deployment uses availability zones for all resources that support it, as hub networks are usually business critical. This means if the resource group's location does not support availability zones, you must provide an additional parameter to your chosen command below of `location=value` with a value supports availability zones. See [Azure regions with availability zones](https://learn.microsoft.com/azure/availability-zones/az-overview#azure-regions-with-availability-zones).
@@ -39,10 +44,10 @@ az group create --name hub-spoke --location eastus
39
44
40
45
Run the following command to initiate the deployment. If you would like to also deploy this sample with virtual machines and / or an Azure VPN gateway, see the `az deployment group create` examples found later in this document.
@@ -52,21 +57,21 @@ Run the following command to initiate the deployment with a Linux VM deployed to
52
57
|:warning:| This deploys these VMs with basic configuration, they are not Internet facing, but security should always be top of mind. Please update the `adminUsername` and `adminPassword` to a value of your choosing. |
Run the following command to initiate the deployment with a virtual network gateway deployed into the hub virtual network. Note, VPN gateways take a significant time to deploy.
@@ -77,10 +82,10 @@ Run the following command to initiate the deployment with a Linux VM deployed to
77
82
|:warning:| This deploys these VMs with basic configuration, they are not Internet facing, but security should always be top of mind. Please update the `adminUsername` and `adminPassword` to a value of your choosing. |
@@ -106,9 +111,11 @@ The following resources are configured to send diagnostic logs to the included L
106
111
107
112
Note, this deployment includes optional basic virtual machines. These are not configured with a Log Analytics workspace, however, can be with the Log Analytics virtual machine extension for [Windows](https://learn.microsoft.com/azure/virtual-machines/extensions/oms-windows) and [Linux](https://learn.microsoft.com/azure/virtual-machines/extensions/oms-linux).
108
113
109
-
## Bicep implementation
114
+
## Clean up
110
115
111
-
The links above use JSON Azure Resource Manager (ARM) templates to support network referencing. The ARM templates were generated from the following [source bicep file](https://github.com/mspnp/samples/blob/main/solutions/azure-hub-spoke/bicep/main.bicep), which has additional comments and considerations.
116
+
```bash
117
+
az group delete --name ${RESOURCEGROUP_NAME} --yes
0 commit comments