Skip to content

Instantly share code, notes, and snippets.

@bobalob
Created January 17, 2017 19:57
Show Gist options
  • Save bobalob/20d87c67efd28a29a9ad637ba601dc92 to your computer and use it in GitHub Desktop.
Save bobalob/20d87c67efd28a29a9ad637ba601dc92 to your computer and use it in GitHub Desktop.
{
"$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": "testPublicIp",
"location": "[resourceGroup().location]",
"properties": {
"publicIPAllocationMethod": "Dynamic",
"dnsSettings": {
"domainNameLabel": "testdnsname99"
}
}
}
],
"outputs": {
"testOutputUrl": {
"type": "string",
"value": "[reference('testPublicIp').dnsSettings.fqdn]"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment