AzSDK.Test/TestCases/SVT/CDN/TestData/Template_CDN_All_Non_Compliant.json

{
    "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "ResourceName": {
            "defaultValue": "azsdktestcdn",
            "type": "string"
        },
        "storageAccountForCDN": {
            "defaultValue": "azsdkteststoragecommon",
            "type": "string"
        },
        "endpointForCDN": {
            "defaultValue": "azsdktestcdn/azsdktestcdnendpoint",
            "type": "string"
        },
        "originForCDN": {
            "defaultValue": "azsdktestcdn/azsdktestcdnendpoint/azsdkteststoragecommon-blob-core-windows-net",
            "type": "string"
        },
        "location": {
          "type": "string",
          "defaultValue": "eastus2"
        }
    },
    "variables": {},
    "resources": [
        {
            "type": "Microsoft.Cdn/profiles",
            "sku": {
                "name": "Premium_Verizon"
            },
            "name": "[parameters('ResourceName')]",
            "apiVersion": "2016-04-02",
            "location": "[parameters('location')]",
            "tags": {},
            "properties": {
                "provisioningState": "Succeeded",
                "resourceState": "Active"
            },
            "dependsOn": []
        },
        {
            "type": "Microsoft.Cdn/profiles/endpoints",
            "name": "[parameters('endpointForCDN')]",
            "apiVersion": "2016-04-02",
            "location": "[parameters('location')]",
            "tags": {},
            "properties": {
                "originHostHeader": "azsdkteststoragecommon.blob.core.windows.net",
                "isHttpAllowed": true,
                "isHttpsAllowed": false,
                "queryStringCachingBehavior": "NotSet",
                "originPath": null,
                "origins": [
                    {
                        "name": "azsdkteststoragecommon-blob-core-windows-net",
                        "properties": {
                            "hostName": "azsdkteststoragecommon.blob.core.windows.net",
                            "httpPort": null,
                            "httpsPort": null
                         }
                    }
                  ],
                "contentTypesToCompress": [],
                "isCompressionEnabled": false
            },
          "dependsOn": [
            "[resourceId('Microsoft.Cdn/profiles', parameters('ResourceName'))]"
          ]
            
        }
    ]
}