Created
January 17, 2017 20:27
-
-
Save bobalob/f93d370d8b8f57a9de986f308b76bf45 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": {}, | |
"variables": {}, | |
"resources": [ | |
{ | |
"apiVersion": "2015-06-15", | |
"type": "Microsoft.Network/publicIPAddresses", | |
"name": "[concat('myPublicIp-', copyindex())]", | |
"location": "[resourceGroup().location]", | |
"copy": { | |
"name": "publicIpLoop", | |
"count": 3 | |
}, | |
"properties": { | |
"publicIPAllocationMethod": "Dynamic" | |
} | |
} | |
], | |
"outputs": { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment