FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

azurerm_cdn_profile

Create a CDN Profile to create a collection of CDN Endpoints.

Example Usage

resource "azurerm_resource_group" "test" {
    name = "resourceGroup1"
    location = "West US"
}

resource "azurerm_cdn_profile" "test" {
    name = "acceptanceTestCdnProfile1"
    location = "West US"
    resource_group_name = "${azurerm_resource_group.test.name}"
    sku = "Standard_Verizon"

    tags {
	environment = "Production"
	cost_center = "MSFT"
    }
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io