1. Packages
  2. Azure Classic
  3. API Docs
  4. logicapps
  5. IntegrationAccountCertificate

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

    Manages a Logic App Integration Account Certificate.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleIntegrationAccount = new Azure.LogicApps.IntegrationAccount("exampleIntegrationAccount", new Azure.LogicApps.IntegrationAccountArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
                SkuName = "Standard",
            });
            var exampleIntegrationAccountCertificate = new Azure.LogicApps.IntegrationAccountCertificate("exampleIntegrationAccountCertificate", new Azure.LogicApps.IntegrationAccountCertificateArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                IntegrationAccountName = exampleIntegrationAccount.Name,
                PublicCertificate = "MIIDbzCCAlegAwIBAgIJAIzjRD36sIbbMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMRIwEAYDVQQKDAl0ZXJyYWZvcm0xFTATBgNVBAMMDHRlcnJhZm9ybS5pbzAgFw0xNzA0MjEyMDA1MjdaGA8yMTE3MDMyODIwMDUyN1owTTELMAkGA1UEBhMCVVMxEzARBgNVBAgMClNvbWUtU3RhdGUxEjAQBgNVBAoMCXRlcnJhZm9ybTEVMBMGA1UEAwwMdGVycmFmb3JtLmlvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3L9L5szT4+FLykTFNyyPjy/k3BQTYAfRQzP2dhnsuUKm3cdPC0NyZ+wEXIUGhoDO2YG6EYChOl8fsDqDOjloSUGKqYw++nlpHIuUgJx8IxxG2XkALCjFU7EmF+w7kn76d0ezpEIYxnLP+KG2DVornoEt1aLhv1MLmpgEZZPhDbMSLhSYWeTVRMayXLwqtfgnDumQSB+8d/1JuJqrSI4pD12JozVThzb6hsjfb6RMX4epPmrGn0PbTPEEA6awmsxBCXB0s13nNQt/O0hLM2agwvAyozilQV+s616Ckgk6DJoUkqZhDy7vPYMIRSr98fBws6zkrV6tTLjmD8xAvobePQIDAQABo1AwTjAdBgNVHQ4EFgQUXIqO421zMMmbcRRX9wctZFCQuPIwHwYDVR0jBBgwFoAUXIqO421zMMmbcRRX9wctZFCQuPIwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAr82NeT3BYJOKLlUL6Om5LjUF66ewcJjG9ltdvyQwVneMcq7t5UAPxgChzqNRVk4da8PzkXpjBJyWezHupdJNX3XqeUk2kSxqQ6/gmhqvfI3y7djrwoO6jvMEY26WqtkTNORWDP3THJJVimC3zV+KMU5UBVrEzhOVhHSU709lBP75o0BBn3xGsPqSq9k8IotIFfyAc6a+XP3+ZMpvh7wqAUml7vWa5wlcXExCx39h1balfDSLGNC4swWPCp9AMnQR0p+vMay9hNP1Eh+9QYUai14d5KS3cFV+KxE1cJR5HD/iLltnnOEbpMsB0eVOZWkFvE7Y5lW0oVSAfin5TwTJMQ==",
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/logicapps"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleIntegrationAccount, err := logicapps.NewIntegrationAccount(ctx, "exampleIntegrationAccount", &logicapps.IntegrationAccountArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    			SkuName:           pulumi.String("Standard"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = logicapps.NewIntegrationAccountCertificate(ctx, "exampleIntegrationAccountCertificate", &logicapps.IntegrationAccountCertificateArgs{
    			ResourceGroupName:      exampleResourceGroup.Name,
    			IntegrationAccountName: exampleIntegrationAccount.Name,
    			PublicCertificate:      pulumi.String("MIIDbzCCAlegAwIBAgIJAIzjRD36sIbbMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMRIwEAYDVQQKDAl0ZXJyYWZvcm0xFTATBgNVBAMMDHRlcnJhZm9ybS5pbzAgFw0xNzA0MjEyMDA1MjdaGA8yMTE3MDMyODIwMDUyN1owTTELMAkGA1UEBhMCVVMxEzARBgNVBAgMClNvbWUtU3RhdGUxEjAQBgNVBAoMCXRlcnJhZm9ybTEVMBMGA1UEAwwMdGVycmFmb3JtLmlvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3L9L5szT4+FLykTFNyyPjy/k3BQTYAfRQzP2dhnsuUKm3cdPC0NyZ+wEXIUGhoDO2YG6EYChOl8fsDqDOjloSUGKqYw++nlpHIuUgJx8IxxG2XkALCjFU7EmF+w7kn76d0ezpEIYxnLP+KG2DVornoEt1aLhv1MLmpgEZZPhDbMSLhSYWeTVRMayXLwqtfgnDumQSB+8d/1JuJqrSI4pD12JozVThzb6hsjfb6RMX4epPmrGn0PbTPEEA6awmsxBCXB0s13nNQt/O0hLM2agwvAyozilQV+s616Ckgk6DJoUkqZhDy7vPYMIRSr98fBws6zkrV6tTLjmD8xAvobePQIDAQABo1AwTjAdBgNVHQ4EFgQUXIqO421zMMmbcRRX9wctZFCQuPIwHwYDVR0jBBgwFoAUXIqO421zMMmbcRRX9wctZFCQuPIwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAr82NeT3BYJOKLlUL6Om5LjUF66ewcJjG9ltdvyQwVneMcq7t5UAPxgChzqNRVk4da8PzkXpjBJyWezHupdJNX3XqeUk2kSxqQ6/gmhqvfI3y7djrwoO6jvMEY26WqtkTNORWDP3THJJVimC3zV+KMU5UBVrEzhOVhHSU709lBP75o0BBn3xGsPqSq9k8IotIFfyAc6a+XP3+ZMpvh7wqAUml7vWa5wlcXExCx39h1balfDSLGNC4swWPCp9AMnQR0p+vMay9hNP1Eh+9QYUai14d5KS3cFV+KxE1cJR5HD/iLltnnOEbpMsB0eVOZWkFvE7Y5lW0oVSAfin5TwTJMQ=="),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleIntegrationAccount = new azure.logicapps.IntegrationAccount("exampleIntegrationAccount", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
        skuName: "Standard",
    });
    const exampleIntegrationAccountCertificate = new azure.logicapps.IntegrationAccountCertificate("exampleIntegrationAccountCertificate", {
        resourceGroupName: exampleResourceGroup.name,
        integrationAccountName: exampleIntegrationAccount.name,
        publicCertificate: "MIIDbzCCAlegAwIBAgIJAIzjRD36sIbbMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMRIwEAYDVQQKDAl0ZXJyYWZvcm0xFTATBgNVBAMMDHRlcnJhZm9ybS5pbzAgFw0xNzA0MjEyMDA1MjdaGA8yMTE3MDMyODIwMDUyN1owTTELMAkGA1UEBhMCVVMxEzARBgNVBAgMClNvbWUtU3RhdGUxEjAQBgNVBAoMCXRlcnJhZm9ybTEVMBMGA1UEAwwMdGVycmFmb3JtLmlvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3L9L5szT4+FLykTFNyyPjy/k3BQTYAfRQzP2dhnsuUKm3cdPC0NyZ+wEXIUGhoDO2YG6EYChOl8fsDqDOjloSUGKqYw++nlpHIuUgJx8IxxG2XkALCjFU7EmF+w7kn76d0ezpEIYxnLP+KG2DVornoEt1aLhv1MLmpgEZZPhDbMSLhSYWeTVRMayXLwqtfgnDumQSB+8d/1JuJqrSI4pD12JozVThzb6hsjfb6RMX4epPmrGn0PbTPEEA6awmsxBCXB0s13nNQt/O0hLM2agwvAyozilQV+s616Ckgk6DJoUkqZhDy7vPYMIRSr98fBws6zkrV6tTLjmD8xAvobePQIDAQABo1AwTjAdBgNVHQ4EFgQUXIqO421zMMmbcRRX9wctZFCQuPIwHwYDVR0jBBgwFoAUXIqO421zMMmbcRRX9wctZFCQuPIwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAr82NeT3BYJOKLlUL6Om5LjUF66ewcJjG9ltdvyQwVneMcq7t5UAPxgChzqNRVk4da8PzkXpjBJyWezHupdJNX3XqeUk2kSxqQ6/gmhqvfI3y7djrwoO6jvMEY26WqtkTNORWDP3THJJVimC3zV+KMU5UBVrEzhOVhHSU709lBP75o0BBn3xGsPqSq9k8IotIFfyAc6a+XP3+ZMpvh7wqAUml7vWa5wlcXExCx39h1balfDSLGNC4swWPCp9AMnQR0p+vMay9hNP1Eh+9QYUai14d5KS3cFV+KxE1cJR5HD/iLltnnOEbpMsB0eVOZWkFvE7Y5lW0oVSAfin5TwTJMQ==",
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_integration_account = azure.logicapps.IntegrationAccount("exampleIntegrationAccount",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name,
        sku_name="Standard")
    example_integration_account_certificate = azure.logicapps.IntegrationAccountCertificate("exampleIntegrationAccountCertificate",
        resource_group_name=example_resource_group.name,
        integration_account_name=example_integration_account.name,
        public_certificate="MIIDbzCCAlegAwIBAgIJAIzjRD36sIbbMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApTb21lLVN0YXRlMRIwEAYDVQQKDAl0ZXJyYWZvcm0xFTATBgNVBAMMDHRlcnJhZm9ybS5pbzAgFw0xNzA0MjEyMDA1MjdaGA8yMTE3MDMyODIwMDUyN1owTTELMAkGA1UEBhMCVVMxEzARBgNVBAgMClNvbWUtU3RhdGUxEjAQBgNVBAoMCXRlcnJhZm9ybTEVMBMGA1UEAwwMdGVycmFmb3JtLmlvMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3L9L5szT4+FLykTFNyyPjy/k3BQTYAfRQzP2dhnsuUKm3cdPC0NyZ+wEXIUGhoDO2YG6EYChOl8fsDqDOjloSUGKqYw++nlpHIuUgJx8IxxG2XkALCjFU7EmF+w7kn76d0ezpEIYxnLP+KG2DVornoEt1aLhv1MLmpgEZZPhDbMSLhSYWeTVRMayXLwqtfgnDumQSB+8d/1JuJqrSI4pD12JozVThzb6hsjfb6RMX4epPmrGn0PbTPEEA6awmsxBCXB0s13nNQt/O0hLM2agwvAyozilQV+s616Ckgk6DJoUkqZhDy7vPYMIRSr98fBws6zkrV6tTLjmD8xAvobePQIDAQABo1AwTjAdBgNVHQ4EFgQUXIqO421zMMmbcRRX9wctZFCQuPIwHwYDVR0jBBgwFoAUXIqO421zMMmbcRRX9wctZFCQuPIwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAr82NeT3BYJOKLlUL6Om5LjUF66ewcJjG9ltdvyQwVneMcq7t5UAPxgChzqNRVk4da8PzkXpjBJyWezHupdJNX3XqeUk2kSxqQ6/gmhqvfI3y7djrwoO6jvMEY26WqtkTNORWDP3THJJVimC3zV+KMU5UBVrEzhOVhHSU709lBP75o0BBn3xGsPqSq9k8IotIFfyAc6a+XP3+ZMpvh7wqAUml7vWa5wlcXExCx39h1balfDSLGNC4swWPCp9AMnQR0p+vMay9hNP1Eh+9QYUai14d5KS3cFV+KxE1cJR5HD/iLltnnOEbpMsB0eVOZWkFvE7Y5lW0oVSAfin5TwTJMQ==")
    

    Example coming soon!

    Create IntegrationAccountCertificate Resource

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

    Constructor syntax

    new IntegrationAccountCertificate(name: string, args: IntegrationAccountCertificateArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationAccountCertificate(resource_name: str,
                                      args: IntegrationAccountCertificateArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationAccountCertificate(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      integration_account_name: Optional[str] = None,
                                      resource_group_name: Optional[str] = None,
                                      key_vault_key: Optional[IntegrationAccountCertificateKeyVaultKeyArgs] = None,
                                      metadata: Optional[str] = None,
                                      name: Optional[str] = None,
                                      public_certificate: Optional[str] = None)
    func NewIntegrationAccountCertificate(ctx *Context, name string, args IntegrationAccountCertificateArgs, opts ...ResourceOption) (*IntegrationAccountCertificate, error)
    public IntegrationAccountCertificate(string name, IntegrationAccountCertificateArgs args, CustomResourceOptions? opts = null)
    public IntegrationAccountCertificate(String name, IntegrationAccountCertificateArgs args)
    public IntegrationAccountCertificate(String name, IntegrationAccountCertificateArgs args, CustomResourceOptions options)
    
    type: azure:logicapps:IntegrationAccountCertificate
    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 IntegrationAccountCertificateArgs
    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 IntegrationAccountCertificateArgs
    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 IntegrationAccountCertificateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationAccountCertificateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationAccountCertificateArgs
    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 integrationAccountCertificateResource = new Azure.LogicApps.IntegrationAccountCertificate("integrationAccountCertificateResource", new()
    {
        IntegrationAccountName = "string",
        ResourceGroupName = "string",
        KeyVaultKey = new Azure.LogicApps.Inputs.IntegrationAccountCertificateKeyVaultKeyArgs
        {
            KeyName = "string",
            KeyVaultId = "string",
            KeyVersion = "string",
        },
        Metadata = "string",
        Name = "string",
        PublicCertificate = "string",
    });
    
    example, err := logicapps.NewIntegrationAccountCertificate(ctx, "integrationAccountCertificateResource", &logicapps.IntegrationAccountCertificateArgs{
    	IntegrationAccountName: pulumi.String("string"),
    	ResourceGroupName:      pulumi.String("string"),
    	KeyVaultKey: &logicapps.IntegrationAccountCertificateKeyVaultKeyArgs{
    		KeyName:    pulumi.String("string"),
    		KeyVaultId: pulumi.String("string"),
    		KeyVersion: pulumi.String("string"),
    	},
    	Metadata:          pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	PublicCertificate: pulumi.String("string"),
    })
    
    var integrationAccountCertificateResource = new IntegrationAccountCertificate("integrationAccountCertificateResource", IntegrationAccountCertificateArgs.builder()
        .integrationAccountName("string")
        .resourceGroupName("string")
        .keyVaultKey(IntegrationAccountCertificateKeyVaultKeyArgs.builder()
            .keyName("string")
            .keyVaultId("string")
            .keyVersion("string")
            .build())
        .metadata("string")
        .name("string")
        .publicCertificate("string")
        .build());
    
    integration_account_certificate_resource = azure.logicapps.IntegrationAccountCertificate("integrationAccountCertificateResource",
        integration_account_name="string",
        resource_group_name="string",
        key_vault_key={
            "key_name": "string",
            "key_vault_id": "string",
            "key_version": "string",
        },
        metadata="string",
        name="string",
        public_certificate="string")
    
    const integrationAccountCertificateResource = new azure.logicapps.IntegrationAccountCertificate("integrationAccountCertificateResource", {
        integrationAccountName: "string",
        resourceGroupName: "string",
        keyVaultKey: {
            keyName: "string",
            keyVaultId: "string",
            keyVersion: "string",
        },
        metadata: "string",
        name: "string",
        publicCertificate: "string",
    });
    
    type: azure:logicapps:IntegrationAccountCertificate
    properties:
        integrationAccountName: string
        keyVaultKey:
            keyName: string
            keyVaultId: string
            keyVersion: string
        metadata: string
        name: string
        publicCertificate: string
        resourceGroupName: string
    

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

    IntegrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    ResourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    KeyVaultKey IntegrationAccountCertificateKeyVaultKey
    A key_vault_key block as documented below.
    Metadata string
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    Name string
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    PublicCertificate string
    The public certificate for the Logic App Integration Account Certificate.
    IntegrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    ResourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    KeyVaultKey IntegrationAccountCertificateKeyVaultKeyArgs
    A key_vault_key block as documented below.
    Metadata string
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    Name string
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    PublicCertificate string
    The public certificate for the Logic App Integration Account Certificate.
    integrationAccountName String
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    resourceGroupName String
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    keyVaultKey IntegrationAccountCertificateKeyVaultKey
    A key_vault_key block as documented below.
    metadata String
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    name String
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    publicCertificate String
    The public certificate for the Logic App Integration Account Certificate.
    integrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    resourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    keyVaultKey IntegrationAccountCertificateKeyVaultKey
    A key_vault_key block as documented below.
    metadata string
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    name string
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    publicCertificate string
    The public certificate for the Logic App Integration Account Certificate.
    integration_account_name str
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    resource_group_name str
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    key_vault_key IntegrationAccountCertificateKeyVaultKeyArgs
    A key_vault_key block as documented below.
    metadata str
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    name str
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    public_certificate str
    The public certificate for the Logic App Integration Account Certificate.
    integrationAccountName String
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    resourceGroupName String
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    keyVaultKey Property Map
    A key_vault_key block as documented below.
    metadata String
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    name String
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    publicCertificate String
    The public certificate for the Logic App Integration Account Certificate.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IntegrationAccountCertificate 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 IntegrationAccountCertificate Resource

    Get an existing IntegrationAccountCertificate 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?: IntegrationAccountCertificateState, opts?: CustomResourceOptions): IntegrationAccountCertificate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            integration_account_name: Optional[str] = None,
            key_vault_key: Optional[IntegrationAccountCertificateKeyVaultKeyArgs] = None,
            metadata: Optional[str] = None,
            name: Optional[str] = None,
            public_certificate: Optional[str] = None,
            resource_group_name: Optional[str] = None) -> IntegrationAccountCertificate
    func GetIntegrationAccountCertificate(ctx *Context, name string, id IDInput, state *IntegrationAccountCertificateState, opts ...ResourceOption) (*IntegrationAccountCertificate, error)
    public static IntegrationAccountCertificate Get(string name, Input<string> id, IntegrationAccountCertificateState? state, CustomResourceOptions? opts = null)
    public static IntegrationAccountCertificate get(String name, Output<String> id, IntegrationAccountCertificateState state, CustomResourceOptions options)
    resources:  _:    type: azure:logicapps:IntegrationAccountCertificate    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:
    IntegrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    KeyVaultKey IntegrationAccountCertificateKeyVaultKey
    A key_vault_key block as documented below.
    Metadata string
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    Name string
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    PublicCertificate string
    The public certificate for the Logic App Integration Account Certificate.
    ResourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    IntegrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    KeyVaultKey IntegrationAccountCertificateKeyVaultKeyArgs
    A key_vault_key block as documented below.
    Metadata string
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    Name string
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    PublicCertificate string
    The public certificate for the Logic App Integration Account Certificate.
    ResourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    integrationAccountName String
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    keyVaultKey IntegrationAccountCertificateKeyVaultKey
    A key_vault_key block as documented below.
    metadata String
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    name String
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    publicCertificate String
    The public certificate for the Logic App Integration Account Certificate.
    resourceGroupName String
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    integrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    keyVaultKey IntegrationAccountCertificateKeyVaultKey
    A key_vault_key block as documented below.
    metadata string
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    name string
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    publicCertificate string
    The public certificate for the Logic App Integration Account Certificate.
    resourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    integration_account_name str
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    key_vault_key IntegrationAccountCertificateKeyVaultKeyArgs
    A key_vault_key block as documented below.
    metadata str
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    name str
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    public_certificate str
    The public certificate for the Logic App Integration Account Certificate.
    resource_group_name str
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
    integrationAccountName String
    The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
    keyVaultKey Property Map
    A key_vault_key block as documented below.
    metadata String
    A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
    name String
    The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
    publicCertificate String
    The public certificate for the Logic App Integration Account Certificate.
    resourceGroupName String
    The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.

    Supporting Types

    IntegrationAccountCertificateKeyVaultKey, IntegrationAccountCertificateKeyVaultKeyArgs

    KeyName string
    The name of Key Vault Key.
    KeyVaultId string
    The ID of the Key Vault.
    KeyVersion string
    The version of Key Vault Key.
    KeyName string
    The name of Key Vault Key.
    KeyVaultId string
    The ID of the Key Vault.
    KeyVersion string
    The version of Key Vault Key.
    keyName String
    The name of Key Vault Key.
    keyVaultId String
    The ID of the Key Vault.
    keyVersion String
    The version of Key Vault Key.
    keyName string
    The name of Key Vault Key.
    keyVaultId string
    The ID of the Key Vault.
    keyVersion string
    The version of Key Vault Key.
    key_name str
    The name of Key Vault Key.
    key_vault_id str
    The ID of the Key Vault.
    key_version str
    The version of Key Vault Key.
    keyName String
    The name of Key Vault Key.
    keyVaultId String
    The ID of the Key Vault.
    keyVersion String
    The version of Key Vault Key.

    Import

    Logic App Integration Account Certificates can be imported using the resource id, e.g.

     $ pulumi import azure:logicapps/integrationAccountCertificate:IntegrationAccountCertificate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Logic/integrationAccounts/account1/certificates/certificate1
    

    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.

    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.