AzSDK.Test/TestCases/SVT/TrafficManager/TestData/Template_TrafficManager_All_Compliant.json
{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "ResourceName": { "defaultValue": "azsdktestTrafficmanager", "type": "String" } }, "variables": {}, "resources": [ { "type": "Microsoft.Network/trafficManagerProfiles", "name": "[parameters('ResourceName')]", "apiVersion": "2017-03-01", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { "relativeName": "[parameters('ResourceName')]", "fqdn": "[concat(parameters('ResourceName'),'.trafficmanager.net')]", "ttl": 30 }, "monitorConfig": { "protocol": "HTTPS", "port": 80, "path": "/" }, "endpoints": [ { "name": "External-endpoint", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { "endpointStatus": "Enabled", "target": "www.google.com", "weight": 1, "priority": 1, "endpointLocation": null } } ] }, "dependsOn": [ ] } ] } |