Namespace Pulumi.Azure.Cdn
Classes
Endpoint
A CDN Endpoint is the entity within a CDN Profile containing configuration information regarding caching behaviours and origins. The CDN Endpoint is exposed using the URL format <endpointname>.azureedge.net.
EndpointArgs
EndpointState
GetProfile
GetProfileArgs
GetProfileResult
Profile
Manages a CDN Profile to create a collection of CDN Endpoints.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West US",
});
var exampleProfile = new Azure.Cdn.Profile("exampleProfile", new Azure.Cdn.ProfileArgs
{
Location = "West US",
ResourceGroupName = exampleResourceGroup.Name,
Sku = "Standard_Verizon",
Tags =
{
{ "environment", "Production" },
{ "cost_center", "MSFT" },
},
});
}
}