Skip to content

Commit

Permalink
Add DDoS & Custom DNS Support (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtracey93 committed Nov 11, 2022
1 parent 0b945b3 commit 910430d
Show file tree
Hide file tree
Showing 8 changed files with 142 additions and 21 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ This is currently split logically into the following capabilities:
- Networking - deploy a Virtual Network with, optional:
- Hub & spoke connectivity (peering to a hub Virtual Network)
- Virtual WAN connectivity (peering to a Virtual Hub via a Virtual Hub Connection)
- Link to existing DDoS Network Protection Plan
- Specify Custom DNS Servers
- Role assignments
- Tags

Expand Down
9 changes: 9 additions & 0 deletions docs/wiki/Example-1-Hub-and-Spoke.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@ Here is a simple example parameter file for deploying a landing zone (Subscripti
"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
},
Expand Down
9 changes: 9 additions & 0 deletions docs/wiki/Example-2-Virtual-WAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,15 @@ Here is a simple example parameter file for deploying a landing zone (Subscripti
"10.1.0.0/24"
]
},
"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
},
Expand Down
9 changes: 9 additions & 0 deletions docs/wiki/Example-3-Use-With-Existing-Subscriptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,15 @@ Here is a simple example parameter file for deploying a landing zone (Subscripti
"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
},
Expand Down
43 changes: 36 additions & 7 deletions main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The string must be comprised of `a-z`, `A-Z`, `0-9`, `-`, `_` and ` ` (space). T
> The value for this parameter and the parameter named `subscriptionAliasName` are usually set to the same value for simplicity. But they can be different if required for a reason.
> **Not required when providing an exisiting Subscription ID via the paramater `existingSubscriptionId`**
> **Not required when providing an existing Subscription ID via the parameter `existingSubscriptionId`**
- Type: String
- Default value: `''` *(empty string)*
Expand All @@ -47,7 +47,7 @@ param subscriptionDisplayName string = ''
The string must be comprised of `a-z`, `A-Z`, `0-9`, `-`, `_` and ` ` (space). The maximum length is 63 characters.
> **Not required when providing an exisiting Subscription ID via the paramater `existingSubscriptionId`**
> **Not required when providing an existing Subscription ID via the parameter `existingSubscriptionId`**
- Type: String
- Default value: `''` *(empty string)*
Expand All @@ -63,7 +63,7 @@ A valid Billing Scope starts with `/providers/Microsoft.Billing/billingAccounts/
> See below [example in parameter file](#parameter-file) for an example
> **Not required when providing an exisiting Subscription ID via the paramater `existingSubscriptionId`**
> **Not required when providing an existing Subscription ID via the parameter `existingSubscriptionId`**
- Type: String
- Default value: `''` *(empty string)*
Expand All @@ -79,7 +79,7 @@ param subscriptionBillingScope string = ''
])
@sys.description('''The workload type can be either `Production` or `DevTest` and is case sensitive.
> **Not required when providing an exisiting Subscription ID via the paramater `existingSubscriptionId`**
> **Not required when providing an existing Subscription ID via the parameter `existingSubscriptionId`**
- Type: String
''')
Expand Down Expand Up @@ -192,7 +192,7 @@ param virtualNetworkResourceGroupLockEnabled bool = true
@metadata({
example: 'uksouth'
})
@sys.description('''The location of the virtual network. Use region shortnames e.g. `uksouth`, `eastus`, etc. Defaults to the region where the ARM/Bicep deployment is targetted to unless overridden.
@sys.description('''The location of the virtual network. Use region shortnames e.g. `uksouth`, `eastus`, etc. Defaults to the region where the ARM/Bicep deployment is targeted to unless overridden.
- Type: String
''')
Expand All @@ -217,7 +217,7 @@ param virtualNetworkName string = ''
})
@sys.description('''An object of tag key/value pairs to be set on the Virtual Network that is created.
> **NOTE:** Tags will be overwritten on resoruce if any exist already.
> **NOTE:** Tags will be overwritten on resource if any exist already.
- Type: `{}` Object
- Default value: `{}` *(empty object)*
Expand All @@ -236,6 +236,33 @@ param virtualNetworkTags object = {}
''')
param virtualNetworkAddressSpace array = []

@metadata({
example: [
'10.4.1.4'
'10.2.1.5'
]
})
@sys.description('''The custom DNS servers to use on the Virtual Network, e.g. `["10.4.1.4", "10.2.1.5"]`. If left empty (default) then Azure DNS will be used for the Virtual Network.
- Type: `[]` Array
- Default value: `[]` *(empty array)*
''')
param virtualNetworkDnsServers array = []

@metadata({
example: '/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/xxxxxxxxxx/providers/Microsoft.Network/ddosProtectionPlans/xxxxxxxxxx'
})
@sys.description('''The resource ID of an existing DDoS Network Protection Plan that you wish to link to this Virtual Network.
**Example Expected Values:**
- `''` (empty string)
- DDoS Netowrk Protection Plan Resource ID: `/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/xxxxxxxxxx/providers/Microsoft.Network/ddosProtectionPlans/xxxxxxxxxx`
- Type: String
- Default value: `''` *(empty string)*
''')
param virtualNetworkDdosPlanId string = ''

@metadata({
example: true
})
Expand Down Expand Up @@ -373,7 +400,7 @@ param roleAssignments array = []
})
@sys.description('''Disable telemetry collection by this module.
For more information on the telemtery collected by this module, that is controlled by this parameter, see this page in the wiki: [Telemetry Tracking Using Customer Usage Attribution (PID)](https://github.com/Azure/bicep-lz-vending/wiki/Telemetry)
For more information on the telemetry collected by this module, that is controlled by this parameter, see this page in the wiki: [Telemetry Tracking Using Customer Usage Attribution (PID)](https://github.com/Azure/bicep-lz-vending/wiki/Telemetry)
''')
param disableTelemetry bool = false

Expand Down Expand Up @@ -430,6 +457,8 @@ module createSubscriptionResources 'src/self/subResourceWrapper/deploy.bicep' =
virtualNetworkName: virtualNetworkName
virtualNetworkTags: virtualNetworkTags
virtualNetworkAddressSpace: virtualNetworkAddressSpace
virtualNetworkDnsServers: virtualNetworkDnsServers
virtualNetworkDdosPlanId: virtualNetworkDdosPlanId
virtualNetworkPeeringEnabled: virtualNetworkPeeringEnabled
hubNetworkResourceId: hubNetworkResourceId
virtualNetworkUseRemoteGateways: virtualNetworkUseRemoteGateways
Expand Down
Loading

0 comments on commit 910430d

Please sign in to comment.