creamy-knife-93354
11/10/2023, 7:53 AMCustomDomainHttpsParameters
from Pulumi.AzureNative.Cdn, but this doesn't seem to be a real thing in the SDK 😁EndpointCustomDomain
from Azure Classic.
var customDomain = new Pulumi.Azure.Cdn.EndpointCustomDomain(
// Name + 7 random chars can be max 24
$"frontend-domain", new()
{
CdnEndpointId = endpoint.Id,
HostName = customDomainString,
CdnManagedHttps = new EndpointCustomDomainCdnManagedHttpsArgs()
{
ProtocolType = "ServerNameIndication",
CertificateType = "Dedicated",
}
},
new CustomResourceOptions()
{
DependsOn = dnsRecord
});