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

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.containerapp.getEnvironmentCertificate

Explore with Pulumi AI

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

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

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = azure.containerapp.getEnvironment({
    name: "example-environment",
    resourceGroupName: "example-resources",
});
const exampleGetEnvironmentCertificate = example.then(example => azure.containerapp.getEnvironmentCertificate({
    name: "mycertificate",
    containerAppEnvironmentId: example.id,
}));
Copy
import pulumi
import pulumi_azure as azure

example = azure.containerapp.get_environment(name="example-environment",
    resource_group_name="example-resources")
example_get_environment_certificate = azure.containerapp.get_environment_certificate(name="mycertificate",
    container_app_environment_id=example.id)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/containerapp"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, 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: example.Id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = Azure.ContainerApp.GetEnvironment.Invoke(new()
    {
        Name = "example-environment",
        ResourceGroupName = "example-resources",
    });

    var exampleGetEnvironmentCertificate = Azure.ContainerApp.GetEnvironmentCertificate.Invoke(new()
    {
        Name = "mycertificate",
        ContainerAppEnvironmentId = example.Apply(getEnvironmentResult => getEnvironmentResult.Id),
    });

});
Copy
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 example = ContainerappFunctions.getEnvironment(GetEnvironmentArgs.builder()
            .name("example-environment")
            .resourceGroupName("example-resources")
            .build());

        final var exampleGetEnvironmentCertificate = ContainerappFunctions.getEnvironmentCertificate(GetEnvironmentCertificateArgs.builder()
            .name("mycertificate")
            .containerAppEnvironmentId(example.applyValue(getEnvironmentResult -> getEnvironmentResult.id()))
            .build());

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: azure:containerapp:getEnvironment
      arguments:
        name: example-environment
        resourceGroupName: example-resources
  exampleGetEnvironmentCertificate:
    fn::invoke:
      function: azure:containerapp:getEnvironmentCertificate
      arguments:
        name: mycertificate
        containerAppEnvironmentId: ${example.id}
Copy

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>
Copy
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]
Copy
func LookupEnvironmentCertificate(ctx *Context, args *LookupEnvironmentCertificateArgs, opts ...InvokeOption) (*LookupEnvironmentCertificateResult, error)
func LookupEnvironmentCertificateOutput(ctx *Context, args *LookupEnvironmentCertificateOutputArgs, opts ...InvokeOption) LookupEnvironmentCertificateResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetEnvironmentCertificateResult> getEnvironmentCertificate(GetEnvironmentCertificateArgs args, InvokeOptions options)
public static Output<GetEnvironmentCertificateResult> getEnvironmentCertificate(GetEnvironmentCertificateArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: azure:containerapp/getEnvironmentCertificate:getEnvironmentCertificate
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ContainerAppEnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.
Name
This property is required.
Changes to this property will trigger replacement.
string
The name of the Container Apps Certificate. Changing this forces a new resource to be created.
ContainerAppEnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.
Name
This property is required.
Changes to this property will trigger replacement.
string
The name of the Container Apps Certificate. Changing this forces a new resource to be created.
containerAppEnvironmentId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.
name
This property is required.
Changes to this property will trigger replacement.
String
The name of the Container Apps Certificate. Changing this forces a new resource to be created.
containerAppEnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.
name
This property is required.
Changes to this property will trigger replacement.
string
The name of the Container Apps Certificate. Changing this forces a new resource to be created.
container_app_environment_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.
name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Container Apps Certificate. Changing this forces a new resource to be created.
containerAppEnvironmentId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created.
name
This property is required.
Changes to this property will trigger replacement.
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.

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi