1. Packages
  2. Azure Native
  3. API Docs
  4. cdn
  5. CustomDomain
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.cdn.CustomDomain

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

Friendly domain name mapping to the endpoint hostname that the customer provides for branding purposes, e.g. www.contoso.com.

Uses Azure REST API version 2024-09-01. In version 2.x of the Azure Native provider, it used API version 2023-05-01.

Other available API versions: 2023-05-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview, 2025-04-15. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native cdn [ApiVersion]. See the version guide for details.

Example Usage

CustomDomains_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var customDomain = new AzureNative.Cdn.CustomDomain("customDomain", new()
    {
        CustomDomainName = "www-someDomain-net",
        EndpointName = "endpoint1",
        HostName = "www.someDomain.net",
        ProfileName = "profile1",
        ResourceGroupName = "RG",
    });

});
Copy
package main

import (
	cdn "github.com/pulumi/pulumi-azure-native-sdk/cdn/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cdn.NewCustomDomain(ctx, "customDomain", &cdn.CustomDomainArgs{
			CustomDomainName:  pulumi.String("www-someDomain-net"),
			EndpointName:      pulumi.String("endpoint1"),
			HostName:          pulumi.String("www.someDomain.net"),
			ProfileName:       pulumi.String("profile1"),
			ResourceGroupName: pulumi.String("RG"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cdn.CustomDomain;
import com.pulumi.azurenative.cdn.CustomDomainArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var customDomain = new CustomDomain("customDomain", CustomDomainArgs.builder()
            .customDomainName("www-someDomain-net")
            .endpointName("endpoint1")
            .hostName("www.someDomain.net")
            .profileName("profile1")
            .resourceGroupName("RG")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const customDomain = new azure_native.cdn.CustomDomain("customDomain", {
    customDomainName: "www-someDomain-net",
    endpointName: "endpoint1",
    hostName: "www.someDomain.net",
    profileName: "profile1",
    resourceGroupName: "RG",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

custom_domain = azure_native.cdn.CustomDomain("customDomain",
    custom_domain_name="www-someDomain-net",
    endpoint_name="endpoint1",
    host_name="www.someDomain.net",
    profile_name="profile1",
    resource_group_name="RG")
Copy
resources:
  customDomain:
    type: azure-native:cdn:CustomDomain
    properties:
      customDomainName: www-someDomain-net
      endpointName: endpoint1
      hostName: www.someDomain.net
      profileName: profile1
      resourceGroupName: RG
Copy

Create CustomDomain Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CustomDomain(name: string, args: CustomDomainArgs, opts?: CustomResourceOptions);
@overload
def CustomDomain(resource_name: str,
                 args: CustomDomainArgs,
                 opts: Optional[ResourceOptions] = None)

@overload
def CustomDomain(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 endpoint_name: Optional[str] = None,
                 host_name: Optional[str] = None,
                 profile_name: Optional[str] = None,
                 resource_group_name: Optional[str] = None,
                 custom_domain_name: Optional[str] = None)
func NewCustomDomain(ctx *Context, name string, args CustomDomainArgs, opts ...ResourceOption) (*CustomDomain, error)
public CustomDomain(string name, CustomDomainArgs args, CustomResourceOptions? opts = null)
public CustomDomain(String name, CustomDomainArgs args)
public CustomDomain(String name, CustomDomainArgs args, CustomResourceOptions options)
type: azure-native:cdn:CustomDomain
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CustomDomainArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CustomDomainArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CustomDomainArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CustomDomainArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CustomDomainArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var azure_nativeCustomDomainResource = new AzureNative.Cdn.CustomDomain("azure-nativeCustomDomainResource", new()
{
    EndpointName = "string",
    HostName = "string",
    ProfileName = "string",
    ResourceGroupName = "string",
    CustomDomainName = "string",
});
Copy
example, err := cdn.NewCustomDomain(ctx, "azure-nativeCustomDomainResource", &cdn.CustomDomainArgs{
	EndpointName:      pulumi.String("string"),
	HostName:          pulumi.String("string"),
	ProfileName:       pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	CustomDomainName:  pulumi.String("string"),
})
Copy
var azure_nativeCustomDomainResource = new CustomDomain("azure-nativeCustomDomainResource", CustomDomainArgs.builder()
    .endpointName("string")
    .hostName("string")
    .profileName("string")
    .resourceGroupName("string")
    .customDomainName("string")
    .build());
Copy
azure_native_custom_domain_resource = azure_native.cdn.CustomDomain("azure-nativeCustomDomainResource",
    endpoint_name="string",
    host_name="string",
    profile_name="string",
    resource_group_name="string",
    custom_domain_name="string")
Copy
const azure_nativeCustomDomainResource = new azure_native.cdn.CustomDomain("azure-nativeCustomDomainResource", {
    endpointName: "string",
    hostName: "string",
    profileName: "string",
    resourceGroupName: "string",
    customDomainName: "string",
});
Copy
type: azure-native:cdn:CustomDomain
properties:
    customDomainName: string
    endpointName: string
    hostName: string
    profileName: string
    resourceGroupName: string
Copy

CustomDomain Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The CustomDomain resource accepts the following input properties:

EndpointName
This property is required.
Changes to this property will trigger replacement.
string
Name of the endpoint under the profile which is unique globally.
HostName This property is required. string
The host name of the custom domain. Must be a domain name.
ProfileName
This property is required.
Changes to this property will trigger replacement.
string
Name of the CDN profile which is unique within the resource group.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Resource group within the Azure subscription.
CustomDomainName Changes to this property will trigger replacement. string
Name of the custom domain within an endpoint.
EndpointName
This property is required.
Changes to this property will trigger replacement.
string
Name of the endpoint under the profile which is unique globally.
HostName This property is required. string
The host name of the custom domain. Must be a domain name.
ProfileName
This property is required.
Changes to this property will trigger replacement.
string
Name of the CDN profile which is unique within the resource group.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Resource group within the Azure subscription.
CustomDomainName Changes to this property will trigger replacement. string
Name of the custom domain within an endpoint.
endpointName
This property is required.
Changes to this property will trigger replacement.
String
Name of the endpoint under the profile which is unique globally.
hostName This property is required. String
The host name of the custom domain. Must be a domain name.
profileName
This property is required.
Changes to this property will trigger replacement.
String
Name of the CDN profile which is unique within the resource group.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Resource group within the Azure subscription.
customDomainName Changes to this property will trigger replacement. String
Name of the custom domain within an endpoint.
endpointName
This property is required.
Changes to this property will trigger replacement.
string
Name of the endpoint under the profile which is unique globally.
hostName This property is required. string
The host name of the custom domain. Must be a domain name.
profileName
This property is required.
Changes to this property will trigger replacement.
string
Name of the CDN profile which is unique within the resource group.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Resource group within the Azure subscription.
customDomainName Changes to this property will trigger replacement. string
Name of the custom domain within an endpoint.
endpoint_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the endpoint under the profile which is unique globally.
host_name This property is required. str
The host name of the custom domain. Must be a domain name.
profile_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the CDN profile which is unique within the resource group.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the Resource group within the Azure subscription.
custom_domain_name Changes to this property will trigger replacement. str
Name of the custom domain within an endpoint.
endpointName
This property is required.
Changes to this property will trigger replacement.
String
Name of the endpoint under the profile which is unique globally.
hostName This property is required. String
The host name of the custom domain. Must be a domain name.
profileName
This property is required.
Changes to this property will trigger replacement.
String
Name of the CDN profile which is unique within the resource group.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Resource group within the Azure subscription.
customDomainName Changes to this property will trigger replacement. String
Name of the custom domain within an endpoint.

Outputs

All input properties are implicitly available as output properties. Additionally, the CustomDomain resource produces the following output properties:

AzureApiVersion string
The Azure API version of the resource.
CustomHttpsProvisioningState string
Provisioning status of the custom domain.
CustomHttpsProvisioningSubstate string
Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
ProvisioningState string
Provisioning status of Custom Https of the custom domain.
ResourceState string
Resource status of the custom domain.
SystemData Pulumi.AzureNative.Cdn.Outputs.SystemDataResponse
Read only system data
Type string
Resource type.
CustomHttpsParameters Pulumi.AzureNative.Cdn.Outputs.CdnManagedHttpsParametersResponse | Pulumi.AzureNative.Cdn.Outputs.UserManagedHttpsParametersResponse
Certificate parameters for securing custom HTTPS
ValidationData string
Special validation or data may be required when delivering CDN to some regions due to local compliance reasons. E.g. ICP license number of a custom domain is required to deliver content in China.
AzureApiVersion string
The Azure API version of the resource.
CustomHttpsProvisioningState string
Provisioning status of the custom domain.
CustomHttpsProvisioningSubstate string
Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
ProvisioningState string
Provisioning status of Custom Https of the custom domain.
ResourceState string
Resource status of the custom domain.
SystemData SystemDataResponse
Read only system data
Type string
Resource type.
CustomHttpsParameters CdnManagedHttpsParametersResponse | UserManagedHttpsParametersResponse
Certificate parameters for securing custom HTTPS
ValidationData string
Special validation or data may be required when delivering CDN to some regions due to local compliance reasons. E.g. ICP license number of a custom domain is required to deliver content in China.
azureApiVersion String
The Azure API version of the resource.
customHttpsProvisioningState String
Provisioning status of the custom domain.
customHttpsProvisioningSubstate String
Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
provisioningState String
Provisioning status of Custom Https of the custom domain.
resourceState String
Resource status of the custom domain.
systemData SystemDataResponse
Read only system data
type String
Resource type.
customHttpsParameters CdnManagedHttpsParametersResponse | UserManagedHttpsParametersResponse
Certificate parameters for securing custom HTTPS
validationData String
Special validation or data may be required when delivering CDN to some regions due to local compliance reasons. E.g. ICP license number of a custom domain is required to deliver content in China.
azureApiVersion string
The Azure API version of the resource.
customHttpsProvisioningState string
Provisioning status of the custom domain.
customHttpsProvisioningSubstate string
Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step.
id string
The provider-assigned unique ID for this managed resource.
name string
Resource name.
provisioningState string
Provisioning status of Custom Https of the custom domain.
resourceState string
Resource status of the custom domain.
systemData SystemDataResponse
Read only system data
type string
Resource type.
customHttpsParameters CdnManagedHttpsParametersResponse | UserManagedHttpsParametersResponse
Certificate parameters for securing custom HTTPS
validationData string
Special validation or data may be required when delivering CDN to some regions due to local compliance reasons. E.g. ICP license number of a custom domain is required to deliver content in China.
azure_api_version str
The Azure API version of the resource.
custom_https_provisioning_state str
Provisioning status of the custom domain.
custom_https_provisioning_substate str
Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step.
id str
The provider-assigned unique ID for this managed resource.
name str
Resource name.
provisioning_state str
Provisioning status of Custom Https of the custom domain.
resource_state str
Resource status of the custom domain.
system_data SystemDataResponse
Read only system data
type str
Resource type.
custom_https_parameters CdnManagedHttpsParametersResponse | UserManagedHttpsParametersResponse
Certificate parameters for securing custom HTTPS
validation_data str
Special validation or data may be required when delivering CDN to some regions due to local compliance reasons. E.g. ICP license number of a custom domain is required to deliver content in China.
azureApiVersion String
The Azure API version of the resource.
customHttpsProvisioningState String
Provisioning status of the custom domain.
customHttpsProvisioningSubstate String
Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
provisioningState String
Provisioning status of Custom Https of the custom domain.
resourceState String
Resource status of the custom domain.
systemData Property Map
Read only system data
type String
Resource type.
customHttpsParameters Property Map | Property Map
Certificate parameters for securing custom HTTPS
validationData String
Special validation or data may be required when delivering CDN to some regions due to local compliance reasons. E.g. ICP license number of a custom domain is required to deliver content in China.

Supporting Types

CdnCertificateSourceParametersResponse
, CdnCertificateSourceParametersResponseArgs

CertificateType This property is required. string
Type of certificate used
CertificateType This property is required. string
Type of certificate used
certificateType This property is required. String
Type of certificate used
certificateType This property is required. string
Type of certificate used
certificate_type This property is required. str
Type of certificate used
certificateType This property is required. String
Type of certificate used

CdnManagedHttpsParametersResponse
, CdnManagedHttpsParametersResponseArgs

CertificateSourceParameters This property is required. Pulumi.AzureNative.Cdn.Inputs.CdnCertificateSourceParametersResponse
Defines the certificate source parameters using CDN managed certificate for enabling SSL.
ProtocolType This property is required. string
Defines the TLS extension protocol that is used for secure delivery.
MinimumTlsVersion string
TLS protocol version that will be used for Https
CertificateSourceParameters This property is required. CdnCertificateSourceParametersResponse
Defines the certificate source parameters using CDN managed certificate for enabling SSL.
ProtocolType This property is required. string
Defines the TLS extension protocol that is used for secure delivery.
MinimumTlsVersion string
TLS protocol version that will be used for Https
certificateSourceParameters This property is required. CdnCertificateSourceParametersResponse
Defines the certificate source parameters using CDN managed certificate for enabling SSL.
protocolType This property is required. String
Defines the TLS extension protocol that is used for secure delivery.
minimumTlsVersion String
TLS protocol version that will be used for Https
certificateSourceParameters This property is required. CdnCertificateSourceParametersResponse
Defines the certificate source parameters using CDN managed certificate for enabling SSL.
protocolType This property is required. string
Defines the TLS extension protocol that is used for secure delivery.
minimumTlsVersion string
TLS protocol version that will be used for Https
certificate_source_parameters This property is required. CdnCertificateSourceParametersResponse
Defines the certificate source parameters using CDN managed certificate for enabling SSL.
protocol_type This property is required. str
Defines the TLS extension protocol that is used for secure delivery.
minimum_tls_version str
TLS protocol version that will be used for Https
certificateSourceParameters This property is required. Property Map
Defines the certificate source parameters using CDN managed certificate for enabling SSL.
protocolType This property is required. String
Defines the TLS extension protocol that is used for secure delivery.
minimumTlsVersion String
TLS protocol version that will be used for Https

KeyVaultCertificateSourceParametersResponse
, KeyVaultCertificateSourceParametersResponseArgs

DeleteRule This property is required. string
Describes the action that shall be taken when the certificate is removed from Key Vault.
ResourceGroupName This property is required. string
Resource group of the user's Key Vault containing the SSL certificate
SecretName This property is required. string
The name of Key Vault Secret (representing the full certificate PFX) in Key Vault.
SubscriptionId This property is required. string
Subscription Id of the user's Key Vault containing the SSL certificate
UpdateRule This property is required. string
Describes the action that shall be taken when the certificate is updated in Key Vault.
VaultName This property is required. string
The name of the user's Key Vault containing the SSL certificate
SecretVersion string
The version(GUID) of Key Vault Secret in Key Vault.
DeleteRule This property is required. string
Describes the action that shall be taken when the certificate is removed from Key Vault.
ResourceGroupName This property is required. string
Resource group of the user's Key Vault containing the SSL certificate
SecretName This property is required. string
The name of Key Vault Secret (representing the full certificate PFX) in Key Vault.
SubscriptionId This property is required. string
Subscription Id of the user's Key Vault containing the SSL certificate
UpdateRule This property is required. string
Describes the action that shall be taken when the certificate is updated in Key Vault.
VaultName This property is required. string
The name of the user's Key Vault containing the SSL certificate
SecretVersion string
The version(GUID) of Key Vault Secret in Key Vault.
deleteRule This property is required. String
Describes the action that shall be taken when the certificate is removed from Key Vault.
resourceGroupName This property is required. String
Resource group of the user's Key Vault containing the SSL certificate
secretName This property is required. String
The name of Key Vault Secret (representing the full certificate PFX) in Key Vault.
subscriptionId This property is required. String
Subscription Id of the user's Key Vault containing the SSL certificate
updateRule This property is required. String
Describes the action that shall be taken when the certificate is updated in Key Vault.
vaultName This property is required. String
The name of the user's Key Vault containing the SSL certificate
secretVersion String
The version(GUID) of Key Vault Secret in Key Vault.
deleteRule This property is required. string
Describes the action that shall be taken when the certificate is removed from Key Vault.
resourceGroupName This property is required. string
Resource group of the user's Key Vault containing the SSL certificate
secretName This property is required. string
The name of Key Vault Secret (representing the full certificate PFX) in Key Vault.
subscriptionId This property is required. string
Subscription Id of the user's Key Vault containing the SSL certificate
updateRule This property is required. string
Describes the action that shall be taken when the certificate is updated in Key Vault.
vaultName This property is required. string
The name of the user's Key Vault containing the SSL certificate
secretVersion string
The version(GUID) of Key Vault Secret in Key Vault.
delete_rule This property is required. str
Describes the action that shall be taken when the certificate is removed from Key Vault.
resource_group_name This property is required. str
Resource group of the user's Key Vault containing the SSL certificate
secret_name This property is required. str
The name of Key Vault Secret (representing the full certificate PFX) in Key Vault.
subscription_id This property is required. str
Subscription Id of the user's Key Vault containing the SSL certificate
update_rule This property is required. str
Describes the action that shall be taken when the certificate is updated in Key Vault.
vault_name This property is required. str
The name of the user's Key Vault containing the SSL certificate
secret_version str
The version(GUID) of Key Vault Secret in Key Vault.
deleteRule This property is required. String
Describes the action that shall be taken when the certificate is removed from Key Vault.
resourceGroupName This property is required. String
Resource group of the user's Key Vault containing the SSL certificate
secretName This property is required. String
The name of Key Vault Secret (representing the full certificate PFX) in Key Vault.
subscriptionId This property is required. String
Subscription Id of the user's Key Vault containing the SSL certificate
updateRule This property is required. String
Describes the action that shall be taken when the certificate is updated in Key Vault.
vaultName This property is required. String
The name of the user's Key Vault containing the SSL certificate
secretVersion String
The version(GUID) of Key Vault Secret in Key Vault.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC)
CreatedBy string
An identifier for the identity that created the resource
CreatedByType string
The type of identity that created the resource
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
An identifier for the identity that last modified the resource
LastModifiedByType string
The type of identity that last modified the resource
CreatedAt string
The timestamp of resource creation (UTC)
CreatedBy string
An identifier for the identity that created the resource
CreatedByType string
The type of identity that created the resource
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
An identifier for the identity that last modified the resource
LastModifiedByType string
The type of identity that last modified the resource
createdAt String
The timestamp of resource creation (UTC)
createdBy String
An identifier for the identity that created the resource
createdByType String
The type of identity that created the resource
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
An identifier for the identity that last modified the resource
lastModifiedByType String
The type of identity that last modified the resource
createdAt string
The timestamp of resource creation (UTC)
createdBy string
An identifier for the identity that created the resource
createdByType string
The type of identity that created the resource
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
An identifier for the identity that last modified the resource
lastModifiedByType string
The type of identity that last modified the resource
created_at str
The timestamp of resource creation (UTC)
created_by str
An identifier for the identity that created the resource
created_by_type str
The type of identity that created the resource
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
An identifier for the identity that last modified the resource
last_modified_by_type str
The type of identity that last modified the resource
createdAt String
The timestamp of resource creation (UTC)
createdBy String
An identifier for the identity that created the resource
createdByType String
The type of identity that created the resource
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
An identifier for the identity that last modified the resource
lastModifiedByType String
The type of identity that last modified the resource

UserManagedHttpsParametersResponse
, UserManagedHttpsParametersResponseArgs

CertificateSourceParameters This property is required. Pulumi.AzureNative.Cdn.Inputs.KeyVaultCertificateSourceParametersResponse
Defines the certificate source parameters using user's keyvault certificate for enabling SSL.
ProtocolType This property is required. string
Defines the TLS extension protocol that is used for secure delivery.
MinimumTlsVersion string
TLS protocol version that will be used for Https
CertificateSourceParameters This property is required. KeyVaultCertificateSourceParametersResponse
Defines the certificate source parameters using user's keyvault certificate for enabling SSL.
ProtocolType This property is required. string
Defines the TLS extension protocol that is used for secure delivery.
MinimumTlsVersion string
TLS protocol version that will be used for Https
certificateSourceParameters This property is required. KeyVaultCertificateSourceParametersResponse
Defines the certificate source parameters using user's keyvault certificate for enabling SSL.
protocolType This property is required. String
Defines the TLS extension protocol that is used for secure delivery.
minimumTlsVersion String
TLS protocol version that will be used for Https
certificateSourceParameters This property is required. KeyVaultCertificateSourceParametersResponse
Defines the certificate source parameters using user's keyvault certificate for enabling SSL.
protocolType This property is required. string
Defines the TLS extension protocol that is used for secure delivery.
minimumTlsVersion string
TLS protocol version that will be used for Https
certificate_source_parameters This property is required. KeyVaultCertificateSourceParametersResponse
Defines the certificate source parameters using user's keyvault certificate for enabling SSL.
protocol_type This property is required. str
Defines the TLS extension protocol that is used for secure delivery.
minimum_tls_version str
TLS protocol version that will be used for Https
certificateSourceParameters This property is required. Property Map
Defines the certificate source parameters using user's keyvault certificate for enabling SSL.
protocolType This property is required. String
Defines the TLS extension protocol that is used for secure delivery.
minimumTlsVersion String
TLS protocol version that will be used for Https

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:cdn:CustomDomain www-someDomain-net /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/profiles/{profileName}/endpoints/{endpointName}/customDomains/{customDomainName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi