## Example 3 - Landing Zone (Subscription) using an existing Subscription ### Bicep Module Registry Here is a simple example Bicep file for deploying a landing zone (Subscription) with a spoke Virtual Network peered to a Virtual WAN Hub using the [Bicep Module Registry](https://aka.ms/lz-vending/bicep): ```bicep targetScope = 'managementGroup' @description('Specifies the location for resources.') param location string = 'uksouth' module sub003 'br/public:avm/ptn/lz/sub-vending:0.1.0' = { name: 'sub003' params: { subscriptionAliasEnabled: false existingSubscriptionId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' subscriptionTags: { test: 'true' } subscriptionWorkload: 'Production' subscriptionManagementGroupAssociationEnabled: true subscriptionManagementGroupId: 'alz-landingzones-corp' virtualNetworkEnabled: true virtualNetworkLocation: location virtualNetworkResourceGroupName: 'rsg-${location}-net-001' virtualNetworkName: 'vnet-${location}-001' virtualNetworkAddressSpace: [ '10.0.0.0/16' ] virtualNetworkResourceGroupLockEnabled: false virtualNetworkPeeringEnabled: true hubNetworkResourceId: '/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/rsg-uks-net-vwan-001/providers/Microsoft.Network/virtualHubs/vhub-uks-001' } } ``` ### ARM JSON Parameter File Here is a simple example parameter file for deploying a landing zone (Subscription) with a spoke Virtual Network connected to a Virtual WAN Hub: > Note the Virtual WAN routing configuration here will use the defaults. Meaning the Virtual Hub Connection will be associated to the default route table and the default label. For advanced routing configuration, see the examples in the [`main.bicep` module parameters documentation](../../main.bicep.parameters.md) ```json { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "subscriptionAliasEnabled": { "value": false }, "subscriptionDisplayName": { "value": "" }, "subscriptionAliasName": { "value": "" }, "subscriptionBillingScope": { "value": "" }, "subscriptionWorkload": { "value": "" }, "existingSubscriptionId": { "value": "xxxxxxxx-yyyy-zzzz-yyyy-xxxxxxxxxxxx" }, "subscriptionManagementGroupAssociationEnabled": { "value": true }, "subscriptionManagementGroupId": { "value": "alz-landingzones-corp" }, "subscriptionTags": { "value": { "Cost-Center": "ABC123", "Usage": "Example" } }, "virtualNetworkEnabled": { "value": true }, "virtualNetworkResourceGroupName": { "value": "rg-networking-001" }, "virtualNetworkResourceGroupTags": { "value": { "Cost-Center": "ABC123", "Usage": "Example", "Managed-By": "Platform Team" } }, "virtualNetworkResourceGroupLockEnabled": { "value": true }, "virtualNetworkLocation": { "value": "uksouth" }, "virtualNetworkName": { "value": "vnet-example-001" }, "virtualNetworkTags": { "value": { "Cost-Center": "ABC123", "Usage": "Example", "Managed-By": "Platform Team" } }, "virtualNetworkAddressSpace": { "value": [ "10.0.0.0/16" ] }, "virtualNetworkDnsServers": { "value": [ "10.4.1.4", "10.2.1.5" ] }, "virtualNetworkDdosPlanId": { "value": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/rg-hub-network-001/providers/Microsoft.Network/ddosProtectionPlans/ddos-001" }, "virtualNetworkPeeringEnabled": { "value": true }, "hubNetworkResourceId": { "value": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/rg-hub-network-001/providers/Microsoft.Network/virtualNetworks/vnet-hub-001" }, "virtualNetworkUseRemoteGateways": { "value": true }, "virtualNetworkVwanAssociatedRouteTableResourceId": { "value": "" }, "virtualNetworkVwanPropagatedRouteTablesResourceIds": { "value": [] }, "virtualNetworkVwanPropagatedLabels": { "value": [] }, "roleAssignmentEnabled": { "value": true }, "roleAssignments": { "value": [ { "principalId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "definition": "Contributor", "relativeScope": "" }, { "principalId": "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy", "definition": "/providers/Microsoft.Authorization/roleDefinitions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "relativeScope": "" }, { "principalId": "zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz", "definition": "Reader", "relativeScope": "/resourceGroups/rg-networking-001" } ] }, "enableTelemetry": { "value": true } } } ``` Back to [Examples](Examples)