Skip to content

Instantly share code, notes, and snippets.

@marrobi
Created February 14, 2017 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marrobi/c33b082bab295e8f57c02920d54e76d0 to your computer and use it in GitHub Desktop.
Save marrobi/c33b082bab295e8f57c02920d54e76d0 to your computer and use it in GitHub Desktop.
Azure DNS A Record
{
"type": "Microsoft.Network/dnszones/A",
"name": "[variables('A_record_name')]",
"apiVersion": "2016-04-01",
"tags": {
"displayName": "Arecord"
},
"dependsOn": [
"[variables('ApplicationGatewayRef')]"
],
"properties": {
"TTL": 3600,
"ARecords": [
{
"ipv4Address": "[reference(variables('ApplicationGatewayFrontEndIP')).ipAddress]"
}
]
},
"resources": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment