1. Packages
  2. Azure Classic
  3. API Docs
  4. containerapp
  5. getEnvironmentCertificate

We recommend using Azure Native.

Azure Classic v5.58.0 published on Saturday, Dec 2, 2023 by Pulumi

azure.containerapp.getEnvironmentCertificate

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.58.0 published on Saturday, Dec 2, 2023 by Pulumi

    Use this data source to access information about an existing Container App Environment Certificate.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleEnvironment = Azure.ContainerApp.GetEnvironment.Invoke(new()
        {
            Name = "example-environment",
            ResourceGroupName = "example-resources",
        });
    
        var exampleEnvironmentCertificate = Azure.ContainerApp.GetEnvironmentCertificate.Invoke(new()
        {
            Name = "mycertificate",
            ContainerAppEnvironmentId = exampleEnvironment.Apply(getEnvironmentResult => getEnvironmentResult.Id),
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/containerapp"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleEnvironment, err := containerapp.LookupEnvironment(ctx, &containerapp.LookupEnvironmentArgs{
    			Name:              "example-environment",
    			ResourceGroupName: "example-resources",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = containerapp.LookupEnvironmentCertificate(ctx, &containerapp.LookupEnvironmentCertificateArgs{
    			Name:                      "mycertificate",
    			ContainerAppEnvironmentId: exampleEnvironment.Id,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.containerapp.ContainerappFunctions;
    import com.pulumi.azure.containerapp.inputs.GetEnvironmentArgs;
    import com.pulumi.azure.containerapp.inputs.GetEnvironmentCertificateArgs;
    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) {
            final var exampleEnvironment = ContainerappFunctions.getEnvironment(GetEnvironmentArgs.builder()
                .name("example-environment")
                .resourceGroupName("example-resources")
                .build());
    
            final var exampleEnvironmentCertificate = ContainerappFunctions.getEnvironmentCertificate(GetEnvironmentCertificateArgs.builder()
                .name("mycertificate")
                .containerAppEnvironmentId(exampleEnvironment.applyValue(getEnvironmentResult -> getEnvironmentResult.id()))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    
    example_environment = azure.containerapp.get_environment(name="example-environment",
        resource_group_name="example-resources")
    example_environment_certificate = azure.containerapp.get_environment_certificate(name="mycertificate",
        container_app_environment_id=example_environment.id)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleEnvironment = azure.containerapp.getEnvironment({
        name: "example-environment",
        resourceGroupName: "example-resources",
    });
    const exampleEnvironmentCertificate = exampleEnvironment.then(exampleEnvironment => azure.containerapp.getEnvironmentCertificate({
        name: "mycertificate",
        containerAppEnvironmentId: exampleEnvironment.id,
    }));
    
    variables:
      exampleEnvironment:
        fn::invoke:
          Function: azure:containerapp:getEnvironment
          Arguments:
            name: example-environment
            resourceGroupName: example-resources
      exampleEnvironmentCertificate:
        fn::invoke:
          Function: azure:containerapp:getEnvironmentCertificate
          Arguments:
            name: mycertificate
            containerAppEnvironmentId: ${exampleEnvironment.id}
    

    Using getEnvironmentCertificate

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getEnvironmentCertificate(args: GetEnvironmentCertificateArgs, opts?: InvokeOptions): Promise<GetEnvironmentCertificateResult>
    function getEnvironmentCertificateOutput(args: GetEnvironmentCertificateOutputArgs, opts?: InvokeOptions): Output<GetEnvironmentCertificateResult>
    def get_environment_certificate(container_app_environment_id: Optional[str] = None,
                                    name: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetEnvironmentCertificateResult
    def get_environment_certificate_output(container_app_environment_id: Optional[pulumi.Input[str]] = None,
                                    name: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetEnvironmentCertificateResult]
    func LookupEnvironmentCertificate(ctx *Context, args *LookupEnvironmentCertificateArgs, opts ...InvokeOption) (*LookupEnvironmentCertificateResult, error)
    func LookupEnvironmentCertificateOutput(ctx *Context, args *LookupEnvironmentCertificateOutputArgs, opts ...InvokeOption) LookupEnvironmentCertificateResultOutput

    > Note: This function is named LookupEnvironmentCertificate in the Go SDK.

    public static class GetEnvironmentCertificate 
    {
        public static Task<GetEnvironmentCertificateResult> InvokeAsync(GetEnvironmentCertificateArgs args, InvokeOptions? opts = null)
        public static Output<GetEnvironmentCertificateResult> Invoke(GetEnvironmentCertificateInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetEnvironmentCertificateResult> getEnvironmentCertificate(GetEnvironmentCertificateArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: azure:containerapp/getEnvironmentCertificate:getEnvironmentCertificate
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ContainerAppEnvironmentId string

    The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.

    Name string

    The name of the Container Apps Certificate. Changing this forces a new resource to be created.

    ContainerAppEnvironmentId string

    The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.

    Name string

    The name of the Container Apps Certificate. Changing this forces a new resource to be created.

    containerAppEnvironmentId String

    The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.

    name String

    The name of the Container Apps Certificate. Changing this forces a new resource to be created.

    containerAppEnvironmentId string

    The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.

    name string

    The name of the Container Apps Certificate. Changing this forces a new resource to be created.

    container_app_environment_id str

    The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.

    name str

    The name of the Container Apps Certificate. Changing this forces a new resource to be created.

    containerAppEnvironmentId String

    The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.

    name String

    The name of the Container Apps Certificate. Changing this forces a new resource to be created.

    getEnvironmentCertificate Result

    The following output properties are available:

    ContainerAppEnvironmentId string
    ExpirationDate string

    The expiration date for the Certificate.

    Id string

    The provider-assigned unique ID for this managed resource.

    IssueDate string

    The date of issue for the Certificate.

    Issuer string

    The Certificate Issuer.

    Name string
    SubjectName string

    The Subject Name for the Certificate.

    Tags Dictionary<string, string>

    A mapping of tags assigned to the resource.

    Thumbprint string

    The Thumbprint of the Certificate.

    ContainerAppEnvironmentId string
    ExpirationDate string

    The expiration date for the Certificate.

    Id string

    The provider-assigned unique ID for this managed resource.

    IssueDate string

    The date of issue for the Certificate.

    Issuer string

    The Certificate Issuer.

    Name string
    SubjectName string

    The Subject Name for the Certificate.

    Tags map[string]string

    A mapping of tags assigned to the resource.

    Thumbprint string

    The Thumbprint of the Certificate.

    containerAppEnvironmentId String
    expirationDate String

    The expiration date for the Certificate.

    id String

    The provider-assigned unique ID for this managed resource.

    issueDate String

    The date of issue for the Certificate.

    issuer String

    The Certificate Issuer.

    name String
    subjectName String

    The Subject Name for the Certificate.

    tags Map<String,String>

    A mapping of tags assigned to the resource.

    thumbprint String

    The Thumbprint of the Certificate.

    containerAppEnvironmentId string
    expirationDate string

    The expiration date for the Certificate.

    id string

    The provider-assigned unique ID for this managed resource.

    issueDate string

    The date of issue for the Certificate.

    issuer string

    The Certificate Issuer.

    name string
    subjectName string

    The Subject Name for the Certificate.

    tags {[key: string]: string}

    A mapping of tags assigned to the resource.

    thumbprint string

    The Thumbprint of the Certificate.

    container_app_environment_id str
    expiration_date str

    The expiration date for the Certificate.

    id str

    The provider-assigned unique ID for this managed resource.

    issue_date str

    The date of issue for the Certificate.

    issuer str

    The Certificate Issuer.

    name str
    subject_name str

    The Subject Name for the Certificate.

    tags Mapping[str, str]

    A mapping of tags assigned to the resource.

    thumbprint str

    The Thumbprint of the Certificate.

    containerAppEnvironmentId String
    expirationDate String

    The expiration date for the Certificate.

    id String

    The provider-assigned unique ID for this managed resource.

    issueDate String

    The date of issue for the Certificate.

    issuer String

    The Certificate Issuer.

    name String
    subjectName String

    The Subject Name for the Certificate.

    tags Map<String>

    A mapping of tags assigned to the resource.

    thumbprint String

    The Thumbprint of the Certificate.

    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.58.0 published on Saturday, Dec 2, 2023 by Pulumi