Skip to content

Commit e30d331

Browse files
author
Azure Quickstarts Pipeline
committed
update azuredeploy.json README.md for (quickstarts\microsoft.network\pip-with-ddos-ip-protection) ***NO_CI***
1 parent 204e994 commit e30d331

File tree

2 files changed

+92
-12
lines changed

2 files changed

+92
-12
lines changed

quickstarts/microsoft.network/pip-with-ddos-ip-protection/README.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: This template creates a Public IP that is protected by DDoS IP Protection.
2+
description: This template creates a Public IP that is protected with DDoS IP Protection
33
page_type: sample
44
products:
55
- azure
@@ -9,17 +9,7 @@ languages:
99
- json
1010
- bicep
1111
---
12-
13-
![Azure Public Test Date](https://azurequickstartsservice.blob.core.windows.net/badges/quickstarts/microsoft.network/pip-with-ddos-ip-protection/PublicLastTestDate.svg)
14-
![Azure Public Test Result](https://azurequickstartsservice.blob.core.windows.net/badges/quickstarts/microsoft.network/pip-with-ddos-ip-protection/PublicDeployment.svg)
15-
16-
![Azure US Gov Last Test Date](https://azurequickstartsservice.blob.core.windows.net/badges/quickstarts/microsoft.network/pip-with-ddos-ip-protection/FairfaxLastTestDate.svg)
17-
![Azure US Gov Last Test Result](https://azurequickstartsservice.blob.core.windows.net/badges/quickstarts/microsoft.network/pip-with-ddos-ip-protection/FairfaxDeployment.svg)
18-
19-
![Best Practice Check](https://azurequickstartsservice.blob.core.windows.net/badges/quickstarts/microsoft.network/pip-with-ddos-ip-protection/BestPracticeResult.svg)
20-
![Cred Scan Check](https://azurequickstartsservice.blob.core.windows.net/badges/quickstarts/microsoft.network/pip-with-ddos-ip-protection/CredScanResult.svg)
21-
22-
# Create a PIP wth DDoS IP Protection
12+
# Create Public IP with DDoS IP Protection
2313
![Bicep Version](https://azurequickstartsservice.blob.core.windows.net/badges/quickstarts/microsoft.network/pip-with-ddos-ip-protection/BicepVersion.svg)
2414

2515
[![Deploy To Azure](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/1-CONTRIBUTION-GUIDE/images/deploytoazure.svg?sanitize=true)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.network%2Fpip-with-ddos-ip-protection%2Fazuredeploy.json)
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{
2+
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
3+
"contentVersion": "1.0.0.0",
4+
"metadata": {
5+
"_generator": {
6+
"name": "bicep",
7+
"version": "0.11.1.770",
8+
"templateHash": "6149835408625045037"
9+
}
10+
},
11+
"parameters": {
12+
"publicIpName": {
13+
"type": "string",
14+
"defaultValue": "publicIp",
15+
"metadata": {
16+
"description": "Name of the Public IP Address resource"
17+
}
18+
},
19+
"sku": {
20+
"type": "string",
21+
"defaultValue": "Standard",
22+
"allowedValues": [
23+
"Basic",
24+
"Standard"
25+
],
26+
"metadata": {
27+
"description": "SKU of the Public IP Address"
28+
}
29+
},
30+
"publicIPAllocationMethod": {
31+
"type": "string",
32+
"defaultValue": "Static",
33+
"allowedValues": [
34+
"Dynamic",
35+
"Static"
36+
],
37+
"metadata": {
38+
"description": "The Allocation Method used for the Public IP Address"
39+
}
40+
},
41+
"tier": {
42+
"type": "string",
43+
"defaultValue": "Regional",
44+
"allowedValues": [
45+
"Regional",
46+
"Global"
47+
],
48+
"metadata": {
49+
"description": "SKU Tier of the Public IP Address"
50+
}
51+
},
52+
"ddosProtectionMode": {
53+
"type": "string",
54+
"defaultValue": "Enabled",
55+
"allowedValues": [
56+
"VirtualNetworkInherited",
57+
"Enabled",
58+
"Disabled"
59+
],
60+
"metadata": {
61+
"description": "DDoS Protection Mode of the Public IP Address, use Enabled for DDoS IP Protection"
62+
}
63+
},
64+
"location": {
65+
"type": "string",
66+
"defaultValue": "[resourceGroup().location]",
67+
"metadata": {
68+
"description": "Specify a location for the resources."
69+
}
70+
}
71+
},
72+
"resources": [
73+
{
74+
"type": "Microsoft.Network/publicIPAddresses",
75+
"apiVersion": "2022-05-01",
76+
"name": "[parameters('publicIpName')]",
77+
"location": "[parameters('location')]",
78+
"sku": {
79+
"name": "[parameters('sku')]",
80+
"tier": "[parameters('tier')]"
81+
},
82+
"properties": {
83+
"publicIPAllocationMethod": "[parameters('publicIPAllocationMethod')]",
84+
"ddosSettings": {
85+
"protectionMode": "[parameters('ddosProtectionMode')]"
86+
}
87+
}
88+
}
89+
]
90+
}

0 commit comments

Comments
 (0)