1. Packages
  2. Azure Classic
  3. API Docs
  4. appservice
  5. ManagedCertificate

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

azure.appservice.ManagedCertificate

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

    This certificate can be used to secure custom domains on App Services (Windows and Linux) hosted on an App Service Plan of Basic and above (free and shared tiers are not supported).

    NOTE: A certificate is valid for six months, and about a month before the certificate’s expiration date, App Services renews/rotates the certificate. This is managed by Azure and doesn’t require this resource to be changed or reprovisioned. It will change the thumbprint computed attribute the next time the resource is refreshed after rotation occurs, so keep that in mind if you have any dependencies on this attribute directly.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    import * as std from "@pulumi/std";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const example = azure.dns.getZoneOutput({
        name: "mydomain.com",
        resourceGroupName: exampleResourceGroup.name,
    });
    const examplePlan = new azure.appservice.Plan("example", {
        name: "example-plan",
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        kind: "Linux",
        reserved: true,
        sku: {
            tier: "Basic",
            size: "B1",
        },
    });
    const exampleAppService = new azure.appservice.AppService("example", {
        name: "example-app",
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        appServicePlanId: examplePlan.id,
    });
    const exampleTxtRecord = new azure.dns.TxtRecord("example", {
        name: "asuid.mycustomhost.contoso.com",
        zoneName: example.apply(example => example.name),
        resourceGroupName: example.apply(example => example.resourceGroupName),
        ttl: 300,
        records: [{
            value: exampleAppService.customDomainVerificationId,
        }],
    });
    const exampleCNameRecord = new azure.dns.CNameRecord("example", {
        name: "example-adcr",
        zoneName: example.apply(example => example.name),
        resourceGroupName: example.apply(example => example.resourceGroupName),
        ttl: 300,
        record: exampleAppService.defaultSiteHostname,
    });
    const exampleCustomHostnameBinding = new azure.appservice.CustomHostnameBinding("example", {
        hostname: std.joinOutput({
            separator: ".",
            input: [
                exampleCNameRecord.name,
                exampleCNameRecord.zoneName,
            ],
        }).apply(invoke => invoke.result),
        appServiceName: exampleAppService.name,
        resourceGroupName: exampleResourceGroup.name,
    });
    const exampleManagedCertificate = new azure.appservice.ManagedCertificate("example", {customHostnameBindingId: exampleCustomHostnameBinding.id});
    const exampleCertificateBinding = new azure.appservice.CertificateBinding("example", {
        hostnameBindingId: exampleCustomHostnameBinding.id,
        certificateId: exampleManagedCertificate.id,
        sslState: "SniEnabled",
    });
    
    import pulumi
    import pulumi_azure as azure
    import pulumi_std as std
    
    example_resource_group = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example = azure.dns.get_zone_output(name="mydomain.com",
        resource_group_name=example_resource_group.name)
    example_plan = azure.appservice.Plan("example",
        name="example-plan",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        kind="Linux",
        reserved=True,
        sku=azure.appservice.PlanSkuArgs(
            tier="Basic",
            size="B1",
        ))
    example_app_service = azure.appservice.AppService("example",
        name="example-app",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        app_service_plan_id=example_plan.id)
    example_txt_record = azure.dns.TxtRecord("example",
        name="asuid.mycustomhost.contoso.com",
        zone_name=example.name,
        resource_group_name=example.resource_group_name,
        ttl=300,
        records=[azure.dns.TxtRecordRecordArgs(
            value=example_app_service.custom_domain_verification_id,
        )])
    example_c_name_record = azure.dns.CNameRecord("example",
        name="example-adcr",
        zone_name=example.name,
        resource_group_name=example.resource_group_name,
        ttl=300,
        record=example_app_service.default_site_hostname)
    example_custom_hostname_binding = azure.appservice.CustomHostnameBinding("example",
        hostname=std.join_output(separator=".",
            input=[
                example_c_name_record.name,
                example_c_name_record.zone_name,
            ]).apply(lambda invoke: invoke.result),
        app_service_name=example_app_service.name,
        resource_group_name=example_resource_group.name)
    example_managed_certificate = azure.appservice.ManagedCertificate("example", custom_hostname_binding_id=example_custom_hostname_binding.id)
    example_certificate_binding = azure.appservice.CertificateBinding("example",
        hostname_binding_id=example_custom_hostname_binding.id,
        certificate_id=example_managed_certificate.id,
        ssl_state="SniEnabled")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appservice"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/dns"
    	"github.com/pulumi/pulumi-std/sdk/go/std"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		example := dns.LookupZoneOutput(ctx, dns.GetZoneOutputArgs{
    			Name:              pulumi.String("mydomain.com"),
    			ResourceGroupName: exampleResourceGroup.Name,
    		}, nil)
    		examplePlan, err := appservice.NewPlan(ctx, "example", &appservice.PlanArgs{
    			Name:              pulumi.String("example-plan"),
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			Kind:              pulumi.Any("Linux"),
    			Reserved:          pulumi.Bool(true),
    			Sku: &appservice.PlanSkuArgs{
    				Tier: pulumi.String("Basic"),
    				Size: pulumi.String("B1"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleAppService, err := appservice.NewAppService(ctx, "example", &appservice.AppServiceArgs{
    			Name:              pulumi.String("example-app"),
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			AppServicePlanId:  examplePlan.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = dns.NewTxtRecord(ctx, "example", &dns.TxtRecordArgs{
    			Name: pulumi.String("asuid.mycustomhost.contoso.com"),
    			ZoneName: example.ApplyT(func(example dns.GetZoneResult) (*string, error) {
    				return &example.Name, nil
    			}).(pulumi.StringPtrOutput),
    			ResourceGroupName: example.ApplyT(func(example dns.GetZoneResult) (*string, error) {
    				return &example.ResourceGroupName, nil
    			}).(pulumi.StringPtrOutput),
    			Ttl: pulumi.Int(300),
    			Records: dns.TxtRecordRecordArray{
    				&dns.TxtRecordRecordArgs{
    					Value: exampleAppService.CustomDomainVerificationId,
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleCNameRecord, err := dns.NewCNameRecord(ctx, "example", &dns.CNameRecordArgs{
    			Name: pulumi.String("example-adcr"),
    			ZoneName: example.ApplyT(func(example dns.GetZoneResult) (*string, error) {
    				return &example.Name, nil
    			}).(pulumi.StringPtrOutput),
    			ResourceGroupName: example.ApplyT(func(example dns.GetZoneResult) (*string, error) {
    				return &example.ResourceGroupName, nil
    			}).(pulumi.StringPtrOutput),
    			Ttl:    pulumi.Int(300),
    			Record: exampleAppService.DefaultSiteHostname,
    		})
    		if err != nil {
    			return err
    		}
    		exampleCustomHostnameBinding, err := appservice.NewCustomHostnameBinding(ctx, "example", &appservice.CustomHostnameBindingArgs{
    			Hostname: std.JoinOutput(ctx, std.JoinOutputArgs{
    				Separator: pulumi.String("."),
    				Input: pulumi.StringArray{
    					exampleCNameRecord.Name,
    					exampleCNameRecord.ZoneName,
    				},
    			}, nil).ApplyT(func(invoke std.JoinResult) (*string, error) {
    				return invoke.Result, nil
    			}).(pulumi.StringPtrOutput),
    			AppServiceName:    exampleAppService.Name,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		exampleManagedCertificate, err := appservice.NewManagedCertificate(ctx, "example", &appservice.ManagedCertificateArgs{
    			CustomHostnameBindingId: exampleCustomHostnameBinding.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appservice.NewCertificateBinding(ctx, "example", &appservice.CertificateBindingArgs{
    			HostnameBindingId: exampleCustomHostnameBinding.ID(),
    			CertificateId:     exampleManagedCertificate.ID(),
    			SslState:          pulumi.String("SniEnabled"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    using Std = Pulumi.Std;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleResourceGroup = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var example = Azure.Dns.GetZone.Invoke(new()
        {
            Name = "mydomain.com",
            ResourceGroupName = exampleResourceGroup.Name,
        });
    
        var examplePlan = new Azure.AppService.Plan("example", new()
        {
            Name = "example-plan",
            Location = exampleResourceGroup.Location,
            ResourceGroupName = exampleResourceGroup.Name,
            Kind = "Linux",
            Reserved = true,
            Sku = new Azure.AppService.Inputs.PlanSkuArgs
            {
                Tier = "Basic",
                Size = "B1",
            },
        });
    
        var exampleAppService = new Azure.AppService.AppService("example", new()
        {
            Name = "example-app",
            Location = exampleResourceGroup.Location,
            ResourceGroupName = exampleResourceGroup.Name,
            AppServicePlanId = examplePlan.Id,
        });
    
        var exampleTxtRecord = new Azure.Dns.TxtRecord("example", new()
        {
            Name = "asuid.mycustomhost.contoso.com",
            ZoneName = example.Apply(getZoneResult => getZoneResult.Name),
            ResourceGroupName = example.Apply(getZoneResult => getZoneResult.ResourceGroupName),
            Ttl = 300,
            Records = new[]
            {
                new Azure.Dns.Inputs.TxtRecordRecordArgs
                {
                    Value = exampleAppService.CustomDomainVerificationId,
                },
            },
        });
    
        var exampleCNameRecord = new Azure.Dns.CNameRecord("example", new()
        {
            Name = "example-adcr",
            ZoneName = example.Apply(getZoneResult => getZoneResult.Name),
            ResourceGroupName = example.Apply(getZoneResult => getZoneResult.ResourceGroupName),
            Ttl = 300,
            Record = exampleAppService.DefaultSiteHostname,
        });
    
        var exampleCustomHostnameBinding = new Azure.AppService.CustomHostnameBinding("example", new()
        {
            Hostname = Std.Join.Invoke(new()
            {
                Separator = ".",
                Input = new[]
                {
                    exampleCNameRecord.Name,
                    exampleCNameRecord.ZoneName,
                },
            }).Apply(invoke => invoke.Result),
            AppServiceName = exampleAppService.Name,
            ResourceGroupName = exampleResourceGroup.Name,
        });
    
        var exampleManagedCertificate = new Azure.AppService.ManagedCertificate("example", new()
        {
            CustomHostnameBindingId = exampleCustomHostnameBinding.Id,
        });
    
        var exampleCertificateBinding = new Azure.AppService.CertificateBinding("example", new()
        {
            HostnameBindingId = exampleCustomHostnameBinding.Id,
            CertificateId = exampleManagedCertificate.Id,
            SslState = "SniEnabled",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.dns.DnsFunctions;
    import com.pulumi.azure.dns.inputs.GetZoneArgs;
    import com.pulumi.azure.appservice.Plan;
    import com.pulumi.azure.appservice.PlanArgs;
    import com.pulumi.azure.appservice.inputs.PlanSkuArgs;
    import com.pulumi.azure.appservice.AppService;
    import com.pulumi.azure.appservice.AppServiceArgs;
    import com.pulumi.azure.dns.TxtRecord;
    import com.pulumi.azure.dns.TxtRecordArgs;
    import com.pulumi.azure.dns.inputs.TxtRecordRecordArgs;
    import com.pulumi.azure.dns.CNameRecord;
    import com.pulumi.azure.dns.CNameRecordArgs;
    import com.pulumi.azure.appservice.CustomHostnameBinding;
    import com.pulumi.azure.appservice.CustomHostnameBindingArgs;
    import com.pulumi.azure.appservice.ManagedCertificate;
    import com.pulumi.azure.appservice.ManagedCertificateArgs;
    import com.pulumi.azure.appservice.CertificateBinding;
    import com.pulumi.azure.appservice.CertificateBindingArgs;
    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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            final var example = DnsFunctions.getZone(GetZoneArgs.builder()
                .name("mydomain.com")
                .resourceGroupName(exampleResourceGroup.name())
                .build());
    
            var examplePlan = new Plan("examplePlan", PlanArgs.builder()        
                .name("example-plan")
                .location(exampleResourceGroup.location())
                .resourceGroupName(exampleResourceGroup.name())
                .kind("Linux")
                .reserved(true)
                .sku(PlanSkuArgs.builder()
                    .tier("Basic")
                    .size("B1")
                    .build())
                .build());
    
            var exampleAppService = new AppService("exampleAppService", AppServiceArgs.builder()        
                .name("example-app")
                .location(exampleResourceGroup.location())
                .resourceGroupName(exampleResourceGroup.name())
                .appServicePlanId(examplePlan.id())
                .build());
    
            var exampleTxtRecord = new TxtRecord("exampleTxtRecord", TxtRecordArgs.builder()        
                .name("asuid.mycustomhost.contoso.com")
                .zoneName(example.applyValue(getZoneResult -> getZoneResult).applyValue(example -> example.applyValue(getZoneResult -> getZoneResult.name())))
                .resourceGroupName(example.applyValue(getZoneResult -> getZoneResult).applyValue(example -> example.applyValue(getZoneResult -> getZoneResult.resourceGroupName())))
                .ttl(300)
                .records(TxtRecordRecordArgs.builder()
                    .value(exampleAppService.customDomainVerificationId())
                    .build())
                .build());
    
            var exampleCNameRecord = new CNameRecord("exampleCNameRecord", CNameRecordArgs.builder()        
                .name("example-adcr")
                .zoneName(example.applyValue(getZoneResult -> getZoneResult).applyValue(example -> example.applyValue(getZoneResult -> getZoneResult.name())))
                .resourceGroupName(example.applyValue(getZoneResult -> getZoneResult).applyValue(example -> example.applyValue(getZoneResult -> getZoneResult.resourceGroupName())))
                .ttl(300)
                .record(exampleAppService.defaultSiteHostname())
                .build());
    
            var exampleCustomHostnameBinding = new CustomHostnameBinding("exampleCustomHostnameBinding", CustomHostnameBindingArgs.builder()        
                .hostname(StdFunctions.join().applyValue(invoke -> invoke.result()))
                .appServiceName(exampleAppService.name())
                .resourceGroupName(exampleResourceGroup.name())
                .build());
    
            var exampleManagedCertificate = new ManagedCertificate("exampleManagedCertificate", ManagedCertificateArgs.builder()        
                .customHostnameBindingId(exampleCustomHostnameBinding.id())
                .build());
    
            var exampleCertificateBinding = new CertificateBinding("exampleCertificateBinding", CertificateBindingArgs.builder()        
                .hostnameBindingId(exampleCustomHostnameBinding.id())
                .certificateId(exampleManagedCertificate.id())
                .sslState("SniEnabled")
                .build());
    
        }
    }
    
    resources:
      exampleResourceGroup:
        type: azure:core:ResourceGroup
        name: example
        properties:
          name: example-resources
          location: West Europe
      examplePlan:
        type: azure:appservice:Plan
        name: example
        properties:
          name: example-plan
          location: ${exampleResourceGroup.location}
          resourceGroupName: ${exampleResourceGroup.name}
          kind: Linux
          reserved: true
          sku:
            tier: Basic
            size: B1
      exampleAppService:
        type: azure:appservice:AppService
        name: example
        properties:
          name: example-app
          location: ${exampleResourceGroup.location}
          resourceGroupName: ${exampleResourceGroup.name}
          appServicePlanId: ${examplePlan.id}
      exampleTxtRecord:
        type: azure:dns:TxtRecord
        name: example
        properties:
          name: asuid.mycustomhost.contoso.com
          zoneName: ${example.name}
          resourceGroupName: ${example.resourceGroupName}
          ttl: 300
          records:
            - value: ${exampleAppService.customDomainVerificationId}
      exampleCNameRecord:
        type: azure:dns:CNameRecord
        name: example
        properties:
          name: example-adcr
          zoneName: ${example.name}
          resourceGroupName: ${example.resourceGroupName}
          ttl: 300
          record: ${exampleAppService.defaultSiteHostname}
      exampleCustomHostnameBinding:
        type: azure:appservice:CustomHostnameBinding
        name: example
        properties:
          hostname:
            fn::invoke:
              Function: std:join
              Arguments:
                separator: .
                input:
                  - ${exampleCNameRecord.name}
                  - ${exampleCNameRecord.zoneName}
              Return: result
          appServiceName: ${exampleAppService.name}
          resourceGroupName: ${exampleResourceGroup.name}
      exampleManagedCertificate:
        type: azure:appservice:ManagedCertificate
        name: example
        properties:
          customHostnameBindingId: ${exampleCustomHostnameBinding.id}
      exampleCertificateBinding:
        type: azure:appservice:CertificateBinding
        name: example
        properties:
          hostnameBindingId: ${exampleCustomHostnameBinding.id}
          certificateId: ${exampleManagedCertificate.id}
          sslState: SniEnabled
    variables:
      example:
        fn::invoke:
          Function: azure:dns:getZone
          Arguments:
            name: mydomain.com
            resourceGroupName: ${exampleResourceGroup.name}
    

    Create ManagedCertificate Resource

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

    Constructor syntax

    new ManagedCertificate(name: string, args: ManagedCertificateArgs, opts?: CustomResourceOptions);
    @overload
    def ManagedCertificate(resource_name: str,
                           args: ManagedCertificateArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagedCertificate(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           custom_hostname_binding_id: Optional[str] = None,
                           tags: Optional[Mapping[str, str]] = None)
    func NewManagedCertificate(ctx *Context, name string, args ManagedCertificateArgs, opts ...ResourceOption) (*ManagedCertificate, error)
    public ManagedCertificate(string name, ManagedCertificateArgs args, CustomResourceOptions? opts = null)
    public ManagedCertificate(String name, ManagedCertificateArgs args)
    public ManagedCertificate(String name, ManagedCertificateArgs args, CustomResourceOptions options)
    
    type: azure:appservice:ManagedCertificate
    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 ManagedCertificateArgs
    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 ManagedCertificateArgs
    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 ManagedCertificateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagedCertificateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagedCertificateArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var managedCertificateResource = new Azure.AppService.ManagedCertificate("managedCertificateResource", new()
    {
        CustomHostnameBindingId = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := appservice.NewManagedCertificate(ctx, "managedCertificateResource", &appservice.ManagedCertificateArgs{
    	CustomHostnameBindingId: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var managedCertificateResource = new ManagedCertificate("managedCertificateResource", ManagedCertificateArgs.builder()        
        .customHostnameBindingId("string")
        .tags(Map.of("string", "string"))
        .build());
    
    managed_certificate_resource = azure.appservice.ManagedCertificate("managedCertificateResource",
        custom_hostname_binding_id="string",
        tags={
            "string": "string",
        })
    
    const managedCertificateResource = new azure.appservice.ManagedCertificate("managedCertificateResource", {
        customHostnameBindingId: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:appservice:ManagedCertificate
    properties:
        customHostnameBindingId: string
        tags:
            string: string
    

    ManagedCertificate Resource Properties

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

    Inputs

    The ManagedCertificate resource accepts the following input properties:

    CustomHostnameBindingId string
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    CustomHostnameBindingId string
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    customHostnameBindingId String
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    customHostnameBindingId string
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    custom_hostname_binding_id str
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    customHostnameBindingId String
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the App Service Managed Certificate.

    Outputs

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

    CanonicalName string
    The Canonical Name of the Certificate.
    ExpirationDate string
    The expiration date of the Certificate.
    FriendlyName string
    The friendly name of the Certificate.
    HostNames List<string>
    The list of Host Names for the Certificate.
    Id string
    The provider-assigned unique ID for this managed resource.
    IssueDate string
    The Start date for the Certificate.
    Issuer string
    The issuer of the Certificate.
    SubjectName string
    The Subject Name for the Certificate.
    Thumbprint string
    The Certificate Thumbprint.
    CanonicalName string
    The Canonical Name of the Certificate.
    ExpirationDate string
    The expiration date of the Certificate.
    FriendlyName string
    The friendly name of the Certificate.
    HostNames []string
    The list of Host Names for the Certificate.
    Id string
    The provider-assigned unique ID for this managed resource.
    IssueDate string
    The Start date for the Certificate.
    Issuer string
    The issuer of the Certificate.
    SubjectName string
    The Subject Name for the Certificate.
    Thumbprint string
    The Certificate Thumbprint.
    canonicalName String
    The Canonical Name of the Certificate.
    expirationDate String
    The expiration date of the Certificate.
    friendlyName String
    The friendly name of the Certificate.
    hostNames List<String>
    The list of Host Names for the Certificate.
    id String
    The provider-assigned unique ID for this managed resource.
    issueDate String
    The Start date for the Certificate.
    issuer String
    The issuer of the Certificate.
    subjectName String
    The Subject Name for the Certificate.
    thumbprint String
    The Certificate Thumbprint.
    canonicalName string
    The Canonical Name of the Certificate.
    expirationDate string
    The expiration date of the Certificate.
    friendlyName string
    The friendly name of the Certificate.
    hostNames string[]
    The list of Host Names for the Certificate.
    id string
    The provider-assigned unique ID for this managed resource.
    issueDate string
    The Start date for the Certificate.
    issuer string
    The issuer of the Certificate.
    subjectName string
    The Subject Name for the Certificate.
    thumbprint string
    The Certificate Thumbprint.
    canonical_name str
    The Canonical Name of the Certificate.
    expiration_date str
    The expiration date of the Certificate.
    friendly_name str
    The friendly name of the Certificate.
    host_names Sequence[str]
    The list of Host Names for the Certificate.
    id str
    The provider-assigned unique ID for this managed resource.
    issue_date str
    The Start date for the Certificate.
    issuer str
    The issuer of the Certificate.
    subject_name str
    The Subject Name for the Certificate.
    thumbprint str
    The Certificate Thumbprint.
    canonicalName String
    The Canonical Name of the Certificate.
    expirationDate String
    The expiration date of the Certificate.
    friendlyName String
    The friendly name of the Certificate.
    hostNames List<String>
    The list of Host Names for the Certificate.
    id String
    The provider-assigned unique ID for this managed resource.
    issueDate String
    The Start date for the Certificate.
    issuer String
    The issuer of the Certificate.
    subjectName String
    The Subject Name for the Certificate.
    thumbprint String
    The Certificate Thumbprint.

    Look up Existing ManagedCertificate Resource

    Get an existing ManagedCertificate 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?: ManagedCertificateState, opts?: CustomResourceOptions): ManagedCertificate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            canonical_name: Optional[str] = None,
            custom_hostname_binding_id: Optional[str] = None,
            expiration_date: Optional[str] = None,
            friendly_name: Optional[str] = None,
            host_names: Optional[Sequence[str]] = None,
            issue_date: Optional[str] = None,
            issuer: Optional[str] = None,
            subject_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            thumbprint: Optional[str] = None) -> ManagedCertificate
    func GetManagedCertificate(ctx *Context, name string, id IDInput, state *ManagedCertificateState, opts ...ResourceOption) (*ManagedCertificate, error)
    public static ManagedCertificate Get(string name, Input<string> id, ManagedCertificateState? state, CustomResourceOptions? opts = null)
    public static ManagedCertificate get(String name, Output<String> id, ManagedCertificateState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    CanonicalName string
    The Canonical Name of the Certificate.
    CustomHostnameBindingId string
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    ExpirationDate string
    The expiration date of the Certificate.
    FriendlyName string
    The friendly name of the Certificate.
    HostNames List<string>
    The list of Host Names for the Certificate.
    IssueDate string
    The Start date for the Certificate.
    Issuer string
    The issuer of the Certificate.
    SubjectName string
    The Subject Name for the Certificate.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    Thumbprint string
    The Certificate Thumbprint.
    CanonicalName string
    The Canonical Name of the Certificate.
    CustomHostnameBindingId string
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    ExpirationDate string
    The expiration date of the Certificate.
    FriendlyName string
    The friendly name of the Certificate.
    HostNames []string
    The list of Host Names for the Certificate.
    IssueDate string
    The Start date for the Certificate.
    Issuer string
    The issuer of the Certificate.
    SubjectName string
    The Subject Name for the Certificate.
    Tags map[string]string
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    Thumbprint string
    The Certificate Thumbprint.
    canonicalName String
    The Canonical Name of the Certificate.
    customHostnameBindingId String
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    expirationDate String
    The expiration date of the Certificate.
    friendlyName String
    The friendly name of the Certificate.
    hostNames List<String>
    The list of Host Names for the Certificate.
    issueDate String
    The Start date for the Certificate.
    issuer String
    The issuer of the Certificate.
    subjectName String
    The Subject Name for the Certificate.
    tags Map<String,String>
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    thumbprint String
    The Certificate Thumbprint.
    canonicalName string
    The Canonical Name of the Certificate.
    customHostnameBindingId string
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    expirationDate string
    The expiration date of the Certificate.
    friendlyName string
    The friendly name of the Certificate.
    hostNames string[]
    The list of Host Names for the Certificate.
    issueDate string
    The Start date for the Certificate.
    issuer string
    The issuer of the Certificate.
    subjectName string
    The Subject Name for the Certificate.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    thumbprint string
    The Certificate Thumbprint.
    canonical_name str
    The Canonical Name of the Certificate.
    custom_hostname_binding_id str
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    expiration_date str
    The expiration date of the Certificate.
    friendly_name str
    The friendly name of the Certificate.
    host_names Sequence[str]
    The list of Host Names for the Certificate.
    issue_date str
    The Start date for the Certificate.
    issuer str
    The issuer of the Certificate.
    subject_name str
    The Subject Name for the Certificate.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    thumbprint str
    The Certificate Thumbprint.
    canonicalName String
    The Canonical Name of the Certificate.
    customHostnameBindingId String
    The ID of the App Service Custom Hostname Binding for the Certificate. Changing this forces a new App Service Managed Certificate to be created.
    expirationDate String
    The expiration date of the Certificate.
    friendlyName String
    The friendly name of the Certificate.
    hostNames List<String>
    The list of Host Names for the Certificate.
    issueDate String
    The Start date for the Certificate.
    issuer String
    The issuer of the Certificate.
    subjectName String
    The Subject Name for the Certificate.
    tags Map<String>
    A mapping of tags which should be assigned to the App Service Managed Certificate.
    thumbprint String
    The Certificate Thumbprint.

    Import

    App Service Managed Certificates can be imported using the resource id, e.g.

    $ pulumi import azure:appservice/managedCertificate:ManagedCertificate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.Web/certificates/customhost.contoso.com
    

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

    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.

    Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi