1. Packages
  2. Azure Classic
  3. API Docs
  4. frontdoor
  5. CustomHttpsConfiguration

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Import

    Front Door Custom Https Configurations can be imported using the resource id of the Front Door Custom Https Configuration, e.g.

     $ pulumi import azure:frontdoor/customHttpsConfiguration:CustomHttpsConfiguration example_custom_https_1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/frontDoors/frontdoor1/customHttpsConfiguration/endpoint1
    

    Create CustomHttpsConfiguration Resource

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

    Constructor syntax

    new CustomHttpsConfiguration(name: string, args: CustomHttpsConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def CustomHttpsConfiguration(resource_name: str,
                                 args: CustomHttpsConfigurationArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def CustomHttpsConfiguration(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 custom_https_provisioning_enabled: Optional[bool] = None,
                                 frontend_endpoint_id: Optional[str] = None,
                                 custom_https_configuration: Optional[CustomHttpsConfigurationCustomHttpsConfigurationArgs] = None)
    func NewCustomHttpsConfiguration(ctx *Context, name string, args CustomHttpsConfigurationArgs, opts ...ResourceOption) (*CustomHttpsConfiguration, error)
    public CustomHttpsConfiguration(string name, CustomHttpsConfigurationArgs args, CustomResourceOptions? opts = null)
    public CustomHttpsConfiguration(String name, CustomHttpsConfigurationArgs args)
    public CustomHttpsConfiguration(String name, CustomHttpsConfigurationArgs args, CustomResourceOptions options)
    
    type: azure:frontdoor:CustomHttpsConfiguration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CustomHttpsConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CustomHttpsConfigurationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CustomHttpsConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CustomHttpsConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CustomHttpsConfigurationArgs
    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 customHttpsConfigurationResource = new Azure.FrontDoor.CustomHttpsConfiguration("customHttpsConfigurationResource", new()
    {
        CustomHttpsProvisioningEnabled = false,
        FrontendEndpointId = "string",
        CustomHttpsConfigurationConfig = new Azure.FrontDoor.Inputs.CustomHttpsConfigurationCustomHttpsConfigurationArgs
        {
            AzureKeyVaultCertificateSecretName = "string",
            AzureKeyVaultCertificateSecretVersion = "string",
            AzureKeyVaultCertificateVaultId = "string",
            CertificateSource = "string",
            MinimumTlsVersion = "string",
            ProvisioningState = "string",
            ProvisioningSubstate = "string",
        },
    });
    
    example, err := frontdoor.NewCustomHttpsConfiguration(ctx, "customHttpsConfigurationResource", &frontdoor.CustomHttpsConfigurationArgs{
    	CustomHttpsProvisioningEnabled: pulumi.Bool(false),
    	FrontendEndpointId:             pulumi.String("string"),
    	CustomHttpsConfiguration: &frontdoor.CustomHttpsConfigurationCustomHttpsConfigurationArgs{
    		AzureKeyVaultCertificateSecretName:    pulumi.String("string"),
    		AzureKeyVaultCertificateSecretVersion: pulumi.String("string"),
    		AzureKeyVaultCertificateVaultId:       pulumi.String("string"),
    		CertificateSource:                     pulumi.String("string"),
    		MinimumTlsVersion:                     pulumi.String("string"),
    		ProvisioningState:                     pulumi.String("string"),
    		ProvisioningSubstate:                  pulumi.String("string"),
    	},
    })
    
    var customHttpsConfigurationResource = new CustomHttpsConfiguration("customHttpsConfigurationResource", CustomHttpsConfigurationArgs.builder()
        .customHttpsProvisioningEnabled(false)
        .frontendEndpointId("string")
        .customHttpsConfiguration(CustomHttpsConfigurationCustomHttpsConfigurationArgs.builder()
            .azureKeyVaultCertificateSecretName("string")
            .azureKeyVaultCertificateSecretVersion("string")
            .azureKeyVaultCertificateVaultId("string")
            .certificateSource("string")
            .minimumTlsVersion("string")
            .provisioningState("string")
            .provisioningSubstate("string")
            .build())
        .build());
    
    custom_https_configuration_resource = azure.frontdoor.CustomHttpsConfiguration("customHttpsConfigurationResource",
        custom_https_provisioning_enabled=False,
        frontend_endpoint_id="string",
        custom_https_configuration={
            "azure_key_vault_certificate_secret_name": "string",
            "azure_key_vault_certificate_secret_version": "string",
            "azure_key_vault_certificate_vault_id": "string",
            "certificate_source": "string",
            "minimum_tls_version": "string",
            "provisioning_state": "string",
            "provisioning_substate": "string",
        })
    
    const customHttpsConfigurationResource = new azure.frontdoor.CustomHttpsConfiguration("customHttpsConfigurationResource", {
        customHttpsProvisioningEnabled: false,
        frontendEndpointId: "string",
        customHttpsConfiguration: {
            azureKeyVaultCertificateSecretName: "string",
            azureKeyVaultCertificateSecretVersion: "string",
            azureKeyVaultCertificateVaultId: "string",
            certificateSource: "string",
            minimumTlsVersion: "string",
            provisioningState: "string",
            provisioningSubstate: "string",
        },
    });
    
    type: azure:frontdoor:CustomHttpsConfiguration
    properties:
        customHttpsConfiguration:
            azureKeyVaultCertificateSecretName: string
            azureKeyVaultCertificateSecretVersion: string
            azureKeyVaultCertificateVaultId: string
            certificateSource: string
            minimumTlsVersion: string
            provisioningState: string
            provisioningSubstate: string
        customHttpsProvisioningEnabled: false
        frontendEndpointId: string
    

    CustomHttpsConfiguration 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 CustomHttpsConfiguration resource accepts the following input properties:

    CustomHttpsProvisioningEnabled bool
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    FrontendEndpointId string
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    CustomHttpsConfigurationConfig CustomHttpsConfigurationCustomHttpsConfiguration
    A custom_https_configuration block as defined below.
    CustomHttpsProvisioningEnabled bool
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    FrontendEndpointId string
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    CustomHttpsConfiguration CustomHttpsConfigurationCustomHttpsConfigurationArgs
    A custom_https_configuration block as defined below.
    customHttpsProvisioningEnabled Boolean
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    frontendEndpointId String
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    customHttpsConfiguration CustomHttpsConfigurationCustomHttpsConfiguration
    A custom_https_configuration block as defined below.
    customHttpsProvisioningEnabled boolean
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    frontendEndpointId string
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    customHttpsConfiguration CustomHttpsConfigurationCustomHttpsConfiguration
    A custom_https_configuration block as defined below.
    custom_https_provisioning_enabled bool
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    frontend_endpoint_id str
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    custom_https_configuration CustomHttpsConfigurationCustomHttpsConfigurationArgs
    A custom_https_configuration block as defined below.
    customHttpsProvisioningEnabled Boolean
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    frontendEndpointId String
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    customHttpsConfiguration Property Map
    A custom_https_configuration block as defined below.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CustomHttpsConfiguration Resource

    Get an existing CustomHttpsConfiguration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CustomHttpsConfigurationState, opts?: CustomResourceOptions): CustomHttpsConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            custom_https_configuration: Optional[CustomHttpsConfigurationCustomHttpsConfigurationArgs] = None,
            custom_https_provisioning_enabled: Optional[bool] = None,
            frontend_endpoint_id: Optional[str] = None) -> CustomHttpsConfiguration
    func GetCustomHttpsConfiguration(ctx *Context, name string, id IDInput, state *CustomHttpsConfigurationState, opts ...ResourceOption) (*CustomHttpsConfiguration, error)
    public static CustomHttpsConfiguration Get(string name, Input<string> id, CustomHttpsConfigurationState? state, CustomResourceOptions? opts = null)
    public static CustomHttpsConfiguration get(String name, Output<String> id, CustomHttpsConfigurationState state, CustomResourceOptions options)
    resources:  _:    type: azure:frontdoor:CustomHttpsConfiguration    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CustomHttpsConfigurationConfig CustomHttpsConfigurationCustomHttpsConfiguration
    A custom_https_configuration block as defined below.
    CustomHttpsProvisioningEnabled bool
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    FrontendEndpointId string
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    CustomHttpsConfiguration CustomHttpsConfigurationCustomHttpsConfigurationArgs
    A custom_https_configuration block as defined below.
    CustomHttpsProvisioningEnabled bool
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    FrontendEndpointId string
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    customHttpsConfiguration CustomHttpsConfigurationCustomHttpsConfiguration
    A custom_https_configuration block as defined below.
    customHttpsProvisioningEnabled Boolean
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    frontendEndpointId String
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    customHttpsConfiguration CustomHttpsConfigurationCustomHttpsConfiguration
    A custom_https_configuration block as defined below.
    customHttpsProvisioningEnabled boolean
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    frontendEndpointId string
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    custom_https_configuration CustomHttpsConfigurationCustomHttpsConfigurationArgs
    A custom_https_configuration block as defined below.
    custom_https_provisioning_enabled bool
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    frontend_endpoint_id str
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.
    customHttpsConfiguration Property Map
    A custom_https_configuration block as defined below.
    customHttpsProvisioningEnabled Boolean
    Should the HTTPS protocol be enabled for this custom domain associated with the Front Door?
    frontendEndpointId String
    The ID of the FrontDoor Frontend Endpoint which this configuration refers to.

    Supporting Types

    CustomHttpsConfigurationCustomHttpsConfiguration, CustomHttpsConfigurationCustomHttpsConfigurationArgs

    AzureKeyVaultCertificateSecretName string
    The name of the Key Vault secret representing the full certificate PFX.
    AzureKeyVaultCertificateSecretVersion string
    The version of the Key Vault secret representing the full certificate PFX. Defaults to Latest.
    AzureKeyVaultCertificateVaultId string
    The ID of the Key Vault containing the SSL certificate.
    CertificateSource string
    Certificate source to encrypted HTTPS traffic with. Allowed values are FrontDoor or AzureKeyVault. Defaults to FrontDoor.
    MinimumTlsVersion string
    Minimum client TLS version supported.
    ProvisioningState string
    ProvisioningSubstate string
    AzureKeyVaultCertificateSecretName string
    The name of the Key Vault secret representing the full certificate PFX.
    AzureKeyVaultCertificateSecretVersion string
    The version of the Key Vault secret representing the full certificate PFX. Defaults to Latest.
    AzureKeyVaultCertificateVaultId string
    The ID of the Key Vault containing the SSL certificate.
    CertificateSource string
    Certificate source to encrypted HTTPS traffic with. Allowed values are FrontDoor or AzureKeyVault. Defaults to FrontDoor.
    MinimumTlsVersion string
    Minimum client TLS version supported.
    ProvisioningState string
    ProvisioningSubstate string
    azureKeyVaultCertificateSecretName String
    The name of the Key Vault secret representing the full certificate PFX.
    azureKeyVaultCertificateSecretVersion String
    The version of the Key Vault secret representing the full certificate PFX. Defaults to Latest.
    azureKeyVaultCertificateVaultId String
    The ID of the Key Vault containing the SSL certificate.
    certificateSource String
    Certificate source to encrypted HTTPS traffic with. Allowed values are FrontDoor or AzureKeyVault. Defaults to FrontDoor.
    minimumTlsVersion String
    Minimum client TLS version supported.
    provisioningState String
    provisioningSubstate String
    azureKeyVaultCertificateSecretName string
    The name of the Key Vault secret representing the full certificate PFX.
    azureKeyVaultCertificateSecretVersion string
    The version of the Key Vault secret representing the full certificate PFX. Defaults to Latest.
    azureKeyVaultCertificateVaultId string
    The ID of the Key Vault containing the SSL certificate.
    certificateSource string
    Certificate source to encrypted HTTPS traffic with. Allowed values are FrontDoor or AzureKeyVault. Defaults to FrontDoor.
    minimumTlsVersion string
    Minimum client TLS version supported.
    provisioningState string
    provisioningSubstate string
    azure_key_vault_certificate_secret_name str
    The name of the Key Vault secret representing the full certificate PFX.
    azure_key_vault_certificate_secret_version str
    The version of the Key Vault secret representing the full certificate PFX. Defaults to Latest.
    azure_key_vault_certificate_vault_id str
    The ID of the Key Vault containing the SSL certificate.
    certificate_source str
    Certificate source to encrypted HTTPS traffic with. Allowed values are FrontDoor or AzureKeyVault. Defaults to FrontDoor.
    minimum_tls_version str
    Minimum client TLS version supported.
    provisioning_state str
    provisioning_substate str
    azureKeyVaultCertificateSecretName String
    The name of the Key Vault secret representing the full certificate PFX.
    azureKeyVaultCertificateSecretVersion String
    The version of the Key Vault secret representing the full certificate PFX. Defaults to Latest.
    azureKeyVaultCertificateVaultId String
    The ID of the Key Vault containing the SSL certificate.
    certificateSource String
    Certificate source to encrypted HTTPS traffic with. Allowed values are FrontDoor or AzureKeyVault. Defaults to FrontDoor.
    minimumTlsVersion String
    Minimum client TLS version supported.
    provisioningState String
    provisioningSubstate String

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.