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

We recommend using Azure Native.

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

azure.logicapps.IntegrationAccountCertificate

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

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

    Manages a Logic App Integration Account Certificate.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleIntegrationAccount = new azure.logicapps.IntegrationAccount("example", {
        name: "example-ia",
        location: example.location,
        resourceGroupName: example.name,
        skuName: "Standard",
    });
    const exampleIntegrationAccountCertificate = new azure.logicapps.IntegrationAccountCertificate("example", {
        name: "example-iac",
        resourceGroupName: example.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 = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_integration_account = azure.logicapps.IntegrationAccount("example",
        name="example-ia",
        location=example.location,
        resource_group_name=example.name,
        sku_name="Standard")
    example_integration_account_certificate = azure.logicapps.IntegrationAccountCertificate("example",
        name="example-iac",
        resource_group_name=example.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==")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/logicapps"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleIntegrationAccount, err := logicapps.NewIntegrationAccount(ctx, "example", &logicapps.IntegrationAccountArgs{
    			Name:              pulumi.String("example-ia"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			SkuName:           pulumi.String("Standard"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = logicapps.NewIntegrationAccountCertificate(ctx, "example", &logicapps.IntegrationAccountCertificateArgs{
    			Name:                   pulumi.String("example-iac"),
    			ResourceGroupName:      example.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
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleIntegrationAccount = new Azure.LogicApps.IntegrationAccount("example", new()
        {
            Name = "example-ia",
            Location = example.Location,
            ResourceGroupName = example.Name,
            SkuName = "Standard",
        });
    
        var exampleIntegrationAccountCertificate = new Azure.LogicApps.IntegrationAccountCertificate("example", new()
        {
            Name = "example-iac",
            ResourceGroupName = example.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 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.logicapps.IntegrationAccount;
    import com.pulumi.azure.logicapps.IntegrationAccountArgs;
    import com.pulumi.azure.logicapps.IntegrationAccountCertificate;
    import com.pulumi.azure.logicapps.IntegrationAccountCertificateArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleIntegrationAccount = new IntegrationAccount("exampleIntegrationAccount", IntegrationAccountArgs.builder()        
                .name("example-ia")
                .location(example.location())
                .resourceGroupName(example.name())
                .skuName("Standard")
                .build());
    
            var exampleIntegrationAccountCertificate = new IntegrationAccountCertificate("exampleIntegrationAccountCertificate", IntegrationAccountCertificateArgs.builder()        
                .name("example-iac")
                .resourceGroupName(example.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==")
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleIntegrationAccount:
        type: azure:logicapps:IntegrationAccount
        name: example
        properties:
          name: example-ia
          location: ${example.location}
          resourceGroupName: ${example.name}
          skuName: Standard
      exampleIntegrationAccountCertificate:
        type: azure:logicapps:IntegrationAccountCertificate
        name: example
        properties:
          name: example-iac
          resourceGroupName: ${example.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==
    

    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.

    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=azure.logicapps.IntegrationAccountCertificateKeyVaultKeyArgs(
            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

    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)
    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:
    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.

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