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 2025-06-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, 2024-09-01, 2025-01-01-preview, 2025-04-15, 2025-07-01-preview, 2025-09-01-preview. 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
AFDCustomDomains_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var afdCustomDomain = new AzureNative.Cdn.AFDCustomDomain("afdCustomDomain", new()
{
AzureDnsZone = new AzureNative.Cdn.Inputs.ResourceReferenceArgs
{
Id = "",
},
CustomDomainName = "domain1",
HostName = "www.someDomain.net",
ProfileName = "profile1",
ResourceGroupName = "RG",
TlsSettings = new AzureNative.Cdn.Inputs.AFDDomainHttpsParametersArgs
{
CertificateType = AzureNative.Cdn.AfdCertificateType.ManagedCertificate,
CipherSuiteSetType = AzureNative.Cdn.AfdCipherSuiteSetType.Customized,
CustomizedCipherSuiteSet = new AzureNative.Cdn.Inputs.AFDDomainHttpsCustomizedCipherSuiteSetArgs
{
CipherSuiteSetForTls12 = new[]
{
AzureNative.Cdn.AfdCustomizedCipherSuiteForTls12.ECDHE_RSA_AES128_GCM_SHA256,
},
CipherSuiteSetForTls13 = new[]
{
AzureNative.Cdn.AfdCustomizedCipherSuiteForTls13.TLS_AES_128_GCM_SHA256,
AzureNative.Cdn.AfdCustomizedCipherSuiteForTls13.TLS_AES_256_GCM_SHA384,
},
},
MinimumTlsVersion = AzureNative.Cdn.AfdMinimumTlsVersion.TLS12,
},
});
});
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.NewAFDCustomDomain(ctx, "afdCustomDomain", &cdn.AFDCustomDomainArgs{
AzureDnsZone: &cdn.ResourceReferenceArgs{
Id: pulumi.String(""),
},
CustomDomainName: pulumi.String("domain1"),
HostName: pulumi.String("www.someDomain.net"),
ProfileName: pulumi.String("profile1"),
ResourceGroupName: pulumi.String("RG"),
TlsSettings: &cdn.AFDDomainHttpsParametersArgs{
CertificateType: pulumi.String(cdn.AfdCertificateTypeManagedCertificate),
CipherSuiteSetType: pulumi.String(cdn.AfdCipherSuiteSetTypeCustomized),
CustomizedCipherSuiteSet: &cdn.AFDDomainHttpsCustomizedCipherSuiteSetArgs{
CipherSuiteSetForTls12: pulumi.StringArray{
pulumi.String(cdn.AfdCustomizedCipherSuiteForTls12_ECDHE_RSA_AES128_GCM_SHA256),
},
CipherSuiteSetForTls13: pulumi.StringArray{
pulumi.String(cdn.AfdCustomizedCipherSuiteForTls13_TLS_AES_128_GCM_SHA256),
pulumi.String(cdn.AfdCustomizedCipherSuiteForTls13_TLS_AES_256_GCM_SHA384),
},
},
MinimumTlsVersion: cdn.AfdMinimumTlsVersionTLS12,
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cdn.AFDCustomDomain;
import com.pulumi.azurenative.cdn.AFDCustomDomainArgs;
import com.pulumi.azurenative.cdn.inputs.ResourceReferenceArgs;
import com.pulumi.azurenative.cdn.inputs.AFDDomainHttpsParametersArgs;
import com.pulumi.azurenative.cdn.inputs.AFDDomainHttpsCustomizedCipherSuiteSetArgs;
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 afdCustomDomain = new AFDCustomDomain("afdCustomDomain", AFDCustomDomainArgs.builder()
.azureDnsZone(ResourceReferenceArgs.builder()
.id("")
.build())
.customDomainName("domain1")
.hostName("www.someDomain.net")
.profileName("profile1")
.resourceGroupName("RG")
.tlsSettings(AFDDomainHttpsParametersArgs.builder()
.certificateType("ManagedCertificate")
.cipherSuiteSetType("Customized")
.customizedCipherSuiteSet(AFDDomainHttpsCustomizedCipherSuiteSetArgs.builder()
.cipherSuiteSetForTls12("ECDHE_RSA_AES128_GCM_SHA256")
.cipherSuiteSetForTls13(
"TLS_AES_128_GCM_SHA256",
"TLS_AES_256_GCM_SHA384")
.build())
.minimumTlsVersion("TLS12")
.build())
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const afdCustomDomain = new azure_native.cdn.AFDCustomDomain("afdCustomDomain", {
azureDnsZone: {
id: "",
},
customDomainName: "domain1",
hostName: "www.someDomain.net",
profileName: "profile1",
resourceGroupName: "RG",
tlsSettings: {
certificateType: azure_native.cdn.AfdCertificateType.ManagedCertificate,
cipherSuiteSetType: azure_native.cdn.AfdCipherSuiteSetType.Customized,
customizedCipherSuiteSet: {
cipherSuiteSetForTls12: [azure_native.cdn.AfdCustomizedCipherSuiteForTls12.ECDHE_RSA_AES128_GCM_SHA256],
cipherSuiteSetForTls13: [
azure_native.cdn.AfdCustomizedCipherSuiteForTls13.TLS_AES_128_GCM_SHA256,
azure_native.cdn.AfdCustomizedCipherSuiteForTls13.TLS_AES_256_GCM_SHA384,
],
},
minimumTlsVersion: azure_native.cdn.AfdMinimumTlsVersion.TLS12,
},
});
import pulumi
import pulumi_azure_native as azure_native
afd_custom_domain = azure_native.cdn.AFDCustomDomain("afdCustomDomain",
azure_dns_zone={
"id": "",
},
custom_domain_name="domain1",
host_name="www.someDomain.net",
profile_name="profile1",
resource_group_name="RG",
tls_settings={
"certificate_type": azure_native.cdn.AfdCertificateType.MANAGED_CERTIFICATE,
"cipher_suite_set_type": azure_native.cdn.AfdCipherSuiteSetType.CUSTOMIZED,
"customized_cipher_suite_set": {
"cipher_suite_set_for_tls12": [azure_native.cdn.AfdCustomizedCipherSuiteForTls12.ECDH_E_RS_A_AES128_GC_M_SHA256],
"cipher_suite_set_for_tls13": [
azure_native.cdn.AfdCustomizedCipherSuiteForTls13.TL_S_AE_S_128_GC_M_SHA256,
azure_native.cdn.AfdCustomizedCipherSuiteForTls13.TL_S_AE_S_256_GC_M_SHA384,
],
},
"minimum_tls_version": azure_native.cdn.AfdMinimumTlsVersion.TLS12,
})
resources:
afdCustomDomain:
type: azure-native:cdn:AFDCustomDomain
properties:
azureDnsZone:
id: ""
customDomainName: domain1
hostName: www.someDomain.net
profileName: profile1
resourceGroupName: RG
tlsSettings:
certificateType: ManagedCertificate
cipherSuiteSetType: Customized
customizedCipherSuiteSet:
cipherSuiteSetForTls12:
- ECDHE_RSA_AES128_GCM_SHA256
cipherSuiteSetForTls13:
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
minimumTlsVersion: TLS12
Create AFDCustomDomain Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AFDCustomDomain(name: string, args: AFDCustomDomainArgs, opts?: CustomResourceOptions);@overload
def AFDCustomDomain(resource_name: str,
args: AFDCustomDomainArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AFDCustomDomain(resource_name: str,
opts: Optional[ResourceOptions] = None,
host_name: Optional[str] = None,
profile_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
azure_dns_zone: Optional[ResourceReferenceArgs] = None,
custom_domain_name: Optional[str] = None,
extended_properties: Optional[Mapping[str, str]] = None,
pre_validated_custom_domain_resource_id: Optional[ResourceReferenceArgs] = None,
tls_settings: Optional[AFDDomainHttpsParametersArgs] = None)func NewAFDCustomDomain(ctx *Context, name string, args AFDCustomDomainArgs, opts ...ResourceOption) (*AFDCustomDomain, error)public AFDCustomDomain(string name, AFDCustomDomainArgs args, CustomResourceOptions? opts = null)
public AFDCustomDomain(String name, AFDCustomDomainArgs args)
public AFDCustomDomain(String name, AFDCustomDomainArgs args, CustomResourceOptions options)
type: azure-native:cdn:AFDCustomDomain
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 AFDCustomDomainArgs
- 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 AFDCustomDomainArgs
- 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 AFDCustomDomainArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AFDCustomDomainArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AFDCustomDomainArgs
- 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 afdcustomDomainResource = new AzureNative.Cdn.AFDCustomDomain("afdcustomDomainResource", new()
{
HostName = "string",
ProfileName = "string",
ResourceGroupName = "string",
AzureDnsZone = new AzureNative.Cdn.Inputs.ResourceReferenceArgs
{
Id = "string",
},
CustomDomainName = "string",
ExtendedProperties =
{
{ "string", "string" },
},
PreValidatedCustomDomainResourceId = new AzureNative.Cdn.Inputs.ResourceReferenceArgs
{
Id = "string",
},
TlsSettings = new AzureNative.Cdn.Inputs.AFDDomainHttpsParametersArgs
{
CertificateType = "string",
CipherSuiteSetType = "string",
CustomizedCipherSuiteSet = new AzureNative.Cdn.Inputs.AFDDomainHttpsCustomizedCipherSuiteSetArgs
{
CipherSuiteSetForTls12 = new[]
{
"string",
},
CipherSuiteSetForTls13 = new[]
{
"string",
},
},
MinimumTlsVersion = AzureNative.Cdn.AfdMinimumTlsVersion.TLS10,
Secret = new AzureNative.Cdn.Inputs.ResourceReferenceArgs
{
Id = "string",
},
},
});
example, err := cdn.NewAFDCustomDomain(ctx, "afdcustomDomainResource", &cdn.AFDCustomDomainArgs{
HostName: pulumi.String("string"),
ProfileName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
AzureDnsZone: &cdn.ResourceReferenceArgs{
Id: pulumi.String("string"),
},
CustomDomainName: pulumi.String("string"),
ExtendedProperties: pulumi.StringMap{
"string": pulumi.String("string"),
},
PreValidatedCustomDomainResourceId: &cdn.ResourceReferenceArgs{
Id: pulumi.String("string"),
},
TlsSettings: &cdn.AFDDomainHttpsParametersArgs{
CertificateType: pulumi.String("string"),
CipherSuiteSetType: pulumi.String("string"),
CustomizedCipherSuiteSet: &cdn.AFDDomainHttpsCustomizedCipherSuiteSetArgs{
CipherSuiteSetForTls12: pulumi.StringArray{
pulumi.String("string"),
},
CipherSuiteSetForTls13: pulumi.StringArray{
pulumi.String("string"),
},
},
MinimumTlsVersion: cdn.AfdMinimumTlsVersionTLS10,
Secret: &cdn.ResourceReferenceArgs{
Id: pulumi.String("string"),
},
},
})
var afdcustomDomainResource = new AFDCustomDomain("afdcustomDomainResource", AFDCustomDomainArgs.builder()
.hostName("string")
.profileName("string")
.resourceGroupName("string")
.azureDnsZone(ResourceReferenceArgs.builder()
.id("string")
.build())
.customDomainName("string")
.extendedProperties(Map.of("string", "string"))
.preValidatedCustomDomainResourceId(ResourceReferenceArgs.builder()
.id("string")
.build())
.tlsSettings(AFDDomainHttpsParametersArgs.builder()
.certificateType("string")
.cipherSuiteSetType("string")
.customizedCipherSuiteSet(AFDDomainHttpsCustomizedCipherSuiteSetArgs.builder()
.cipherSuiteSetForTls12("string")
.cipherSuiteSetForTls13("string")
.build())
.minimumTlsVersion("TLS10")
.secret(ResourceReferenceArgs.builder()
.id("string")
.build())
.build())
.build());
afdcustom_domain_resource = azure_native.cdn.AFDCustomDomain("afdcustomDomainResource",
host_name="string",
profile_name="string",
resource_group_name="string",
azure_dns_zone={
"id": "string",
},
custom_domain_name="string",
extended_properties={
"string": "string",
},
pre_validated_custom_domain_resource_id={
"id": "string",
},
tls_settings={
"certificate_type": "string",
"cipher_suite_set_type": "string",
"customized_cipher_suite_set": {
"cipher_suite_set_for_tls12": ["string"],
"cipher_suite_set_for_tls13": ["string"],
},
"minimum_tls_version": azure_native.cdn.AfdMinimumTlsVersion.TLS10,
"secret": {
"id": "string",
},
})
const afdcustomDomainResource = new azure_native.cdn.AFDCustomDomain("afdcustomDomainResource", {
hostName: "string",
profileName: "string",
resourceGroupName: "string",
azureDnsZone: {
id: "string",
},
customDomainName: "string",
extendedProperties: {
string: "string",
},
preValidatedCustomDomainResourceId: {
id: "string",
},
tlsSettings: {
certificateType: "string",
cipherSuiteSetType: "string",
customizedCipherSuiteSet: {
cipherSuiteSetForTls12: ["string"],
cipherSuiteSetForTls13: ["string"],
},
minimumTlsVersion: azure_native.cdn.AfdMinimumTlsVersion.TLS10,
secret: {
id: "string",
},
},
});
type: azure-native:cdn:AFDCustomDomain
properties:
azureDnsZone:
id: string
customDomainName: string
extendedProperties:
string: string
hostName: string
preValidatedCustomDomainResourceId:
id: string
profileName: string
resourceGroupName: string
tlsSettings:
certificateType: string
cipherSuiteSetType: string
customizedCipherSuiteSet:
cipherSuiteSetForTls12:
- string
cipherSuiteSetForTls13:
- string
minimumTlsVersion: TLS10
secret:
id: string
AFDCustomDomain 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 AFDCustomDomain resource accepts the following input properties:
- Host
Name string - The host name of the domain. Must be a domain name.
- Profile
Name string - Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Azure
Dns Pulumi.Zone Azure Native. Cdn. Inputs. Resource Reference - Resource reference to the Azure DNS zone
- Custom
Domain stringName - Name of the domain under the profile which is unique globally.
- Extended
Properties Dictionary<string, string> - Key-Value pair representing migration properties for domains.
- Pre
Validated Pulumi.Custom Domain Resource Id Azure Native. Cdn. Inputs. Resource Reference - Resource reference to the Azure resource where custom domain ownership was prevalidated
- Tls
Settings Pulumi.Azure Native. Cdn. Inputs. AFDDomain Https Parameters - The configuration specifying how to enable HTTPS for the domain - using AzureFrontDoor managed certificate or user's own certificate. If not specified, enabling ssl uses AzureFrontDoor managed certificate by default.
- Host
Name string - The host name of the domain. Must be a domain name.
- Profile
Name string - Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Azure
Dns ResourceZone Reference Args - Resource reference to the Azure DNS zone
- Custom
Domain stringName - Name of the domain under the profile which is unique globally.
- Extended
Properties map[string]string - Key-Value pair representing migration properties for domains.
- Pre
Validated ResourceCustom Domain Resource Id Reference Args - Resource reference to the Azure resource where custom domain ownership was prevalidated
- Tls
Settings AFDDomainHttps Parameters Args - The configuration specifying how to enable HTTPS for the domain - using AzureFrontDoor managed certificate or user's own certificate. If not specified, enabling ssl uses AzureFrontDoor managed certificate by default.
- host
Name String - The host name of the domain. Must be a domain name.
- profile
Name String - Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- azure
Dns ResourceZone Reference - Resource reference to the Azure DNS zone
- custom
Domain StringName - Name of the domain under the profile which is unique globally.
- extended
Properties Map<String,String> - Key-Value pair representing migration properties for domains.
- pre
Validated ResourceCustom Domain Resource Id Reference - Resource reference to the Azure resource where custom domain ownership was prevalidated
- tls
Settings AFDDomainHttps Parameters - The configuration specifying how to enable HTTPS for the domain - using AzureFrontDoor managed certificate or user's own certificate. If not specified, enabling ssl uses AzureFrontDoor managed certificate by default.
- host
Name string - The host name of the domain. Must be a domain name.
- profile
Name string - Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- azure
Dns ResourceZone Reference - Resource reference to the Azure DNS zone
- custom
Domain stringName - Name of the domain under the profile which is unique globally.
- extended
Properties {[key: string]: string} - Key-Value pair representing migration properties for domains.
- pre
Validated ResourceCustom Domain Resource Id Reference - Resource reference to the Azure resource where custom domain ownership was prevalidated
- tls
Settings AFDDomainHttps Parameters - The configuration specifying how to enable HTTPS for the domain - using AzureFrontDoor managed certificate or user's own certificate. If not specified, enabling ssl uses AzureFrontDoor managed certificate by default.
- host_
name str - The host name of the domain. Must be a domain name.
- profile_
name str - Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- azure_
dns_ Resourcezone Reference Args - Resource reference to the Azure DNS zone
- custom_
domain_ strname - Name of the domain under the profile which is unique globally.
- extended_
properties Mapping[str, str] - Key-Value pair representing migration properties for domains.
- pre_
validated_ Resourcecustom_ domain_ resource_ id Reference Args - Resource reference to the Azure resource where custom domain ownership was prevalidated
- tls_
settings AFDDomainHttps Parameters Args - The configuration specifying how to enable HTTPS for the domain - using AzureFrontDoor managed certificate or user's own certificate. If not specified, enabling ssl uses AzureFrontDoor managed certificate by default.
- host
Name String - The host name of the domain. Must be a domain name.
- profile
Name String - Name of the Azure Front Door Standard or Azure Front Door Premium or CDN profile which is unique within the resource group.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- azure
Dns Property MapZone - Resource reference to the Azure DNS zone
- custom
Domain StringName - Name of the domain under the profile which is unique globally.
- extended
Properties Map<String> - Key-Value pair representing migration properties for domains.
- pre
Validated Property MapCustom Domain Resource Id - Resource reference to the Azure resource where custom domain ownership was prevalidated
- tls
Settings Property Map - The configuration specifying how to enable HTTPS for the domain - using AzureFrontDoor managed certificate or user's own certificate. If not specified, enabling ssl uses AzureFrontDoor managed certificate by default.
Outputs
All input properties are implicitly available as output properties. Additionally, the AFDCustomDomain resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Deployment
Status string - Domain
Validation stringState - Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step. DCV stands for DomainControlValidation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning status
- System
Data Pulumi.Azure Native. Cdn. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Validation
Properties Pulumi.Azure Native. Cdn. Outputs. Domain Validation Properties Response - Values the customer needs to validate domain ownership
- Azure
Api stringVersion - The Azure API version of the resource.
- Deployment
Status string - Domain
Validation stringState - Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step. DCV stands for DomainControlValidation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning status
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Validation
Properties DomainValidation Properties Response - Values the customer needs to validate domain ownership
- azure
Api StringVersion - The Azure API version of the resource.
- deployment
Status String - domain
Validation StringState - Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step. DCV stands for DomainControlValidation.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning status
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- validation
Properties DomainValidation Properties Response - Values the customer needs to validate domain ownership
- azure
Api stringVersion - The Azure API version of the resource.
- deployment
Status string - domain
Validation stringState - Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step. DCV stands for DomainControlValidation.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning status
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- validation
Properties DomainValidation Properties Response - Values the customer needs to validate domain ownership
- azure_
api_ strversion - The Azure API version of the resource.
- deployment_
status str - domain_
validation_ strstate - Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step. DCV stands for DomainControlValidation.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - Provisioning status
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- validation_
properties DomainValidation Properties Response - Values the customer needs to validate domain ownership
- azure
Api StringVersion - The Azure API version of the resource.
- deployment
Status String - domain
Validation StringState - Provisioning substate shows the progress of custom HTTPS enabling/disabling process step by step. DCV stands for DomainControlValidation.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning status
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- validation
Properties Property Map - Values the customer needs to validate domain ownership
Supporting Types
AFDDomainHttpsCustomizedCipherSuiteSet, AFDDomainHttpsCustomizedCipherSuiteSetArgs
Customized cipher suite set object that will be used for Https when cipherSuiteSetType is Customized.- Cipher
Suite List<Union<string, Pulumi.Set For Tls12 Azure Native. Cdn. Afd Customized Cipher Suite For Tls12>> - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- Cipher
Suite List<Union<string, Pulumi.Set For Tls13 Azure Native. Cdn. Afd Customized Cipher Suite For Tls13>> - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- Cipher
Suite []stringSet For Tls12 - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- Cipher
Suite []stringSet For Tls13 - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- cipher
Suite List<Either<String,AfdSet For Tls12 Customized Cipher Suite For Tls12>> - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- cipher
Suite List<Either<String,AfdSet For Tls13 Customized Cipher Suite For Tls13>> - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- cipher
Suite (string | AfdSet For Tls12 Customized Cipher Suite For Tls12)[] - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- cipher
Suite (string | AfdSet For Tls13 Customized Cipher Suite For Tls13)[] - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- cipher_
suite_ Sequence[Union[str, Afdset_ for_ tls12 Customized Cipher Suite For Tls12]] - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- cipher_
suite_ Sequence[Union[str, Afdset_ for_ tls13 Customized Cipher Suite For Tls13]] - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- cipher
Suite List<String | "ECDHE_RSA_AES128_GCM_SHA256" | "ECDHE_RSA_AES256_GCM_SHA384" | "DHE_RSA_AES256_GCM_SHA384" | "DHE_RSA_AES128_GCM_SHA256" | "ECDHE_RSA_AES128_SHA256" | "ECDHE_RSA_AES256_SHA384">Set For Tls12 - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- cipher
Suite List<String | "TLS_AES_128_GCM_SHA256" | "TLS_AES_256_GCM_SHA384">Set For Tls13 - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
AFDDomainHttpsCustomizedCipherSuiteSetResponse, AFDDomainHttpsCustomizedCipherSuiteSetResponseArgs
Customized cipher suite set object that will be used for Https when cipherSuiteSetType is Customized.- Cipher
Suite List<string>Set For Tls12 - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- Cipher
Suite List<string>Set For Tls13 - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- Cipher
Suite []stringSet For Tls12 - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- Cipher
Suite []stringSet For Tls13 - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- cipher
Suite List<String>Set For Tls12 - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- cipher
Suite List<String>Set For Tls13 - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- cipher
Suite string[]Set For Tls12 - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- cipher
Suite string[]Set For Tls13 - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- cipher_
suite_ Sequence[str]set_ for_ tls12 - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- cipher_
suite_ Sequence[str]set_ for_ tls13 - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
- cipher
Suite List<String>Set For Tls12 - Cipher suites for TLS 1.2. Required at least one in minimumTlsVersion TLS 1.2.
- cipher
Suite List<String>Set For Tls13 - Cipher suites for TLS 1.3. Required at least one in minimumTlsVersion TLS 1.2, TLS 1.3.
AFDDomainHttpsParameters, AFDDomainHttpsParametersArgs
The JSON object that contains the properties to secure a domain.- Certificate
Type string | Pulumi.Azure Native. Cdn. Afd Certificate Type - Defines the source of the SSL certificate.
- Cipher
Suite string | Pulumi.Set Type Azure Native. Cdn. Afd Cipher Suite Set Type - cipher suite set type that will be used for Https
- Customized
Cipher Pulumi.Suite Set Azure Native. Cdn. Inputs. AFDDomain Https Customized Cipher Suite Set - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- Minimum
Tls Pulumi.Version Azure Native. Cdn. Afd Minimum Tls Version - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- Secret
Pulumi.
Azure Native. Cdn. Inputs. Resource Reference - Resource reference to the secret. ie. subs/rg/profile/secret
- Certificate
Type string | AfdCertificate Type - Defines the source of the SSL certificate.
- Cipher
Suite string | AfdSet Type Cipher Suite Set Type - cipher suite set type that will be used for Https
- Customized
Cipher AFDDomainSuite Set Https Customized Cipher Suite Set - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- Minimum
Tls AfdVersion Minimum Tls Version - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- Secret
Resource
Reference - Resource reference to the secret. ie. subs/rg/profile/secret
- certificate
Type String | AfdCertificate Type - Defines the source of the SSL certificate.
- cipher
Suite String | AfdSet Type Cipher Suite Set Type - cipher suite set type that will be used for Https
- customized
Cipher AFDDomainSuite Set Https Customized Cipher Suite Set - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- minimum
Tls AfdVersion Minimum Tls Version - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- secret
Resource
Reference - Resource reference to the secret. ie. subs/rg/profile/secret
- certificate
Type string | AfdCertificate Type - Defines the source of the SSL certificate.
- cipher
Suite string | AfdSet Type Cipher Suite Set Type - cipher suite set type that will be used for Https
- customized
Cipher AFDDomainSuite Set Https Customized Cipher Suite Set - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- minimum
Tls AfdVersion Minimum Tls Version - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- secret
Resource
Reference - Resource reference to the secret. ie. subs/rg/profile/secret
- certificate_
type str | AfdCertificate Type - Defines the source of the SSL certificate.
- cipher_
suite_ str | Afdset_ type Cipher Suite Set Type - cipher suite set type that will be used for Https
- customized_
cipher_ AFDDomainsuite_ set Https Customized Cipher Suite Set - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- minimum_
tls_ Afdversion Minimum Tls Version - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- secret
Resource
Reference - Resource reference to the secret. ie. subs/rg/profile/secret
- certificate
Type String | "CustomerCertificate" | "Managed Certificate" | "Azure First Party Managed Certificate" - Defines the source of the SSL certificate.
- cipher
Suite String | "Customized" | "TLS10_2019" | "TLS12_2022" | "TLS12_2023"Set Type - cipher suite set type that will be used for Https
- customized
Cipher Property MapSuite Set - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- minimum
Tls "TLS10" | "TLS12" | "TLS13"Version - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- secret Property Map
- Resource reference to the secret. ie. subs/rg/profile/secret
AFDDomainHttpsParametersResponse, AFDDomainHttpsParametersResponseArgs
The JSON object that contains the properties to secure a domain.- Certificate
Type string - Defines the source of the SSL certificate.
- Cipher
Suite stringSet Type - cipher suite set type that will be used for Https
- Customized
Cipher Pulumi.Suite Set Azure Native. Cdn. Inputs. AFDDomain Https Customized Cipher Suite Set Response - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- Minimum
Tls stringVersion - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- Secret
Pulumi.
Azure Native. Cdn. Inputs. Resource Reference Response - Resource reference to the secret. ie. subs/rg/profile/secret
- Certificate
Type string - Defines the source of the SSL certificate.
- Cipher
Suite stringSet Type - cipher suite set type that will be used for Https
- Customized
Cipher AFDDomainSuite Set Https Customized Cipher Suite Set Response - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- Minimum
Tls stringVersion - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- Secret
Resource
Reference Response - Resource reference to the secret. ie. subs/rg/profile/secret
- certificate
Type String - Defines the source of the SSL certificate.
- cipher
Suite StringSet Type - cipher suite set type that will be used for Https
- customized
Cipher AFDDomainSuite Set Https Customized Cipher Suite Set Response - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- minimum
Tls StringVersion - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- secret
Resource
Reference Response - Resource reference to the secret. ie. subs/rg/profile/secret
- certificate
Type string - Defines the source of the SSL certificate.
- cipher
Suite stringSet Type - cipher suite set type that will be used for Https
- customized
Cipher AFDDomainSuite Set Https Customized Cipher Suite Set Response - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- minimum
Tls stringVersion - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- secret
Resource
Reference Response - Resource reference to the secret. ie. subs/rg/profile/secret
- certificate_
type str - Defines the source of the SSL certificate.
- cipher_
suite_ strset_ type - cipher suite set type that will be used for Https
- customized_
cipher_ AFDDomainsuite_ set Https Customized Cipher Suite Set Response - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- minimum_
tls_ strversion - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- secret
Resource
Reference Response - Resource reference to the secret. ie. subs/rg/profile/secret
- certificate
Type String - Defines the source of the SSL certificate.
- cipher
Suite StringSet Type - cipher suite set type that will be used for Https
- customized
Cipher Property MapSuite Set - Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.
- minimum
Tls StringVersion - TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.
- secret Property Map
- Resource reference to the secret. ie. subs/rg/profile/secret
AfdCertificateType, AfdCertificateTypeArgs
- Customer
Certificate - CustomerCertificate
- Managed
Certificate - ManagedCertificate
- Azure
First Party Managed Certificate - AzureFirstPartyManagedCertificate
- Afd
Certificate Type Customer Certificate - CustomerCertificate
- Afd
Certificate Type Managed Certificate - ManagedCertificate
- Afd
Certificate Type Azure First Party Managed Certificate - AzureFirstPartyManagedCertificate
- Customer
Certificate - CustomerCertificate
- Managed
Certificate - ManagedCertificate
- Azure
First Party Managed Certificate - AzureFirstPartyManagedCertificate
- Customer
Certificate - CustomerCertificate
- Managed
Certificate - ManagedCertificate
- Azure
First Party Managed Certificate - AzureFirstPartyManagedCertificate
- CUSTOMER_CERTIFICATE
- CustomerCertificate
- MANAGED_CERTIFICATE
- ManagedCertificate
- AZURE_FIRST_PARTY_MANAGED_CERTIFICATE
- AzureFirstPartyManagedCertificate
- "Customer
Certificate" - CustomerCertificate
- "Managed
Certificate" - ManagedCertificate
- "Azure
First Party Managed Certificate" - AzureFirstPartyManagedCertificate
AfdCipherSuiteSetType, AfdCipherSuiteSetTypeArgs
- Customized
- Customized
- TLS10_2019
- TLS10_2019
- TLS12_2022
- TLS12_2022
- TLS12_2023
- TLS12_2023
- Afd
Cipher Suite Set Type Customized - Customized
- Afd
Cipher Suite Set Type_TLS10_2019 - TLS10_2019
- Afd
Cipher Suite Set Type_TLS12_2022 - TLS12_2022
- Afd
Cipher Suite Set Type_TLS12_2023 - TLS12_2023
- Customized
- Customized
- TLS10_2019
- TLS10_2019
- TLS12_2022
- TLS12_2022
- TLS12_2023
- TLS12_2023
- Customized
- Customized
- TLS10_2019
- TLS10_2019
- TLS12_2022
- TLS12_2022
- TLS12_2023
- TLS12_2023
- CUSTOMIZED
- Customized
- TLS10_2019
- TLS10_2019
- TLS12_2022
- TLS12_2022
- TLS12_2023
- TLS12_2023
- "Customized"
- Customized
- "TLS10_2019"
- TLS10_2019
- "TLS12_2022"
- TLS12_2022
- "TLS12_2023"
- TLS12_2023
AfdCustomizedCipherSuiteForTls12, AfdCustomizedCipherSuiteForTls12Args
- ECDHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES256_GCM_SHA384
- ECDHE_RSA_AES256_GCM_SHA384
- DHE_RSA_AES256_GCM_SHA384
- DHE_RSA_AES256_GCM_SHA384
- DHE_RSA_AES128_GCM_SHA256
- DHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES128_SHA256
- ECDHE_RSA_AES128_SHA256
- ECDHE_RSA_AES256_SHA384
- ECDHE_RSA_AES256_SHA384
- Afd
Customized Cipher Suite For Tls12_ECDHE_RSA_AES128_GCM_SHA256 - ECDHE_RSA_AES128_GCM_SHA256
- Afd
Customized Cipher Suite For Tls12_ECDHE_RSA_AES256_GCM_SHA384 - ECDHE_RSA_AES256_GCM_SHA384
- Afd
Customized Cipher Suite For Tls12_DHE_RSA_AES256_GCM_SHA384 - DHE_RSA_AES256_GCM_SHA384
- Afd
Customized Cipher Suite For Tls12_DHE_RSA_AES128_GCM_SHA256 - DHE_RSA_AES128_GCM_SHA256
- Afd
Customized Cipher Suite For Tls12_ECDHE_RSA_AES128_SHA256 - ECDHE_RSA_AES128_SHA256
- Afd
Customized Cipher Suite For Tls12_ECDHE_RSA_AES256_SHA384 - ECDHE_RSA_AES256_SHA384
- ECDHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES256_GCM_SHA384
- ECDHE_RSA_AES256_GCM_SHA384
- DHE_RSA_AES256_GCM_SHA384
- DHE_RSA_AES256_GCM_SHA384
- DHE_RSA_AES128_GCM_SHA256
- DHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES128_SHA256
- ECDHE_RSA_AES128_SHA256
- ECDHE_RSA_AES256_SHA384
- ECDHE_RSA_AES256_SHA384
- ECDHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES256_GCM_SHA384
- ECDHE_RSA_AES256_GCM_SHA384
- DHE_RSA_AES256_GCM_SHA384
- DHE_RSA_AES256_GCM_SHA384
- DHE_RSA_AES128_GCM_SHA256
- DHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES128_SHA256
- ECDHE_RSA_AES128_SHA256
- ECDHE_RSA_AES256_SHA384
- ECDHE_RSA_AES256_SHA384
- ECDH_E_RS_A_AES128_GC_M_SHA256
- ECDHE_RSA_AES128_GCM_SHA256
- ECDH_E_RS_A_AES256_GC_M_SHA384
- ECDHE_RSA_AES256_GCM_SHA384
- DH_E_RS_A_AES256_GC_M_SHA384
- DHE_RSA_AES256_GCM_SHA384
- DH_E_RS_A_AES128_GC_M_SHA256
- DHE_RSA_AES128_GCM_SHA256
- ECDH_E_RS_A_AES128_SHA256
- ECDHE_RSA_AES128_SHA256
- ECDH_E_RS_A_AES256_SHA384
- ECDHE_RSA_AES256_SHA384
- "ECDHE_RSA_AES128_GCM_SHA256"
- ECDHE_RSA_AES128_GCM_SHA256
- "ECDHE_RSA_AES256_GCM_SHA384"
- ECDHE_RSA_AES256_GCM_SHA384
- "DHE_RSA_AES256_GCM_SHA384"
- DHE_RSA_AES256_GCM_SHA384
- "DHE_RSA_AES128_GCM_SHA256"
- DHE_RSA_AES128_GCM_SHA256
- "ECDHE_RSA_AES128_SHA256"
- ECDHE_RSA_AES128_SHA256
- "ECDHE_RSA_AES256_SHA384"
- ECDHE_RSA_AES256_SHA384
AfdCustomizedCipherSuiteForTls13, AfdCustomizedCipherSuiteForTls13Args
- TLS_AES_128_GCM_SHA256
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
- TLS_AES_256_GCM_SHA384
- Afd
Customized Cipher Suite For Tls13_TLS_AES_128_GCM_SHA256 - TLS_AES_128_GCM_SHA256
- Afd
Customized Cipher Suite For Tls13_TLS_AES_256_GCM_SHA384 - TLS_AES_256_GCM_SHA384
- TLS_AES_128_GCM_SHA256
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
- TLS_AES_256_GCM_SHA384
- TLS_AES_128_GCM_SHA256
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
- TLS_AES_256_GCM_SHA384
- TL_S_AE_S_128_GC_M_SHA256
- TLS_AES_128_GCM_SHA256
- TL_S_AE_S_256_GC_M_SHA384
- TLS_AES_256_GCM_SHA384
- "TLS_AES_128_GCM_SHA256"
- TLS_AES_128_GCM_SHA256
- "TLS_AES_256_GCM_SHA384"
- TLS_AES_256_GCM_SHA384
AfdMinimumTlsVersion, AfdMinimumTlsVersionArgs
- TLS10
- TLS10
- TLS12
- TLS12
- TLS13
- TLS13
- Afd
Minimum Tls Version TLS10 - TLS10
- Afd
Minimum Tls Version TLS12 - TLS12
- Afd
Minimum Tls Version TLS13 - TLS13
- TLS10
- TLS10
- TLS12
- TLS12
- TLS13
- TLS13
- TLS10
- TLS10
- TLS12
- TLS12
- TLS13
- TLS13
- TLS10
- TLS10
- TLS12
- TLS12
- TLS13
- TLS13
- "TLS10"
- TLS10
- "TLS12"
- TLS12
- "TLS13"
- TLS13
DomainValidationPropertiesResponse, DomainValidationPropertiesResponseArgs
The JSON object that contains the properties to validate a domain.- Expiration
Date string - The date time that the token expires
- Validation
Token string - Challenge used for DNS TXT record or file based validation
- Expiration
Date string - The date time that the token expires
- Validation
Token string - Challenge used for DNS TXT record or file based validation
- expiration
Date String - The date time that the token expires
- validation
Token String - Challenge used for DNS TXT record or file based validation
- expiration
Date string - The date time that the token expires
- validation
Token string - Challenge used for DNS TXT record or file based validation
- expiration_
date str - The date time that the token expires
- validation_
token str - Challenge used for DNS TXT record or file based validation
- expiration
Date String - The date time that the token expires
- validation
Token String - Challenge used for DNS TXT record or file based validation
ResourceReference, ResourceReferenceArgs
Reference to another resource.- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
ResourceReferenceResponse, ResourceReferenceResponseArgs
Reference to another resource.- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cdn:AFDCustomDomain domain1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/profiles/{profileName}/customDomains/{customDomainName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
