import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Container App Environment Certificate. * * ## Example Usage * * ```typescript * 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, * })); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.App` - 2025-07-01 */ export declare function getEnvironmentCertificate(args: GetEnvironmentCertificateArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEnvironmentCertificate. */ export interface GetEnvironmentCertificateArgs { /** * The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created. */ containerAppEnvironmentId: string; /** * The name of the Container Apps Certificate. Changing this forces a new resource to be created. */ name: string; } /** * A collection of values returned by getEnvironmentCertificate. */ export interface GetEnvironmentCertificateResult { readonly containerAppEnvironmentId: string; /** * The expiration date for the Certificate. */ readonly expirationDate: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The date of issue for the Certificate. */ readonly issueDate: string; /** * The Certificate Issuer. */ readonly issuer: string; readonly name: string; /** * The Subject Name for the Certificate. */ readonly subjectName: string; /** * A mapping of tags assigned to the resource. */ readonly tags: { [key: string]: string; }; /** * The Thumbprint of the Certificate. */ readonly thumbprint: string; } /** * Use this data source to access information about an existing Container App Environment Certificate. * * ## Example Usage * * ```typescript * 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, * })); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.App` - 2025-07-01 */ export declare function getEnvironmentCertificateOutput(args: GetEnvironmentCertificateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEnvironmentCertificate. */ export interface GetEnvironmentCertificateOutputArgs { /** * The ID of the Container App Environment to configure this Certificate on. Changing this forces a new resource to be created. */ containerAppEnvironmentId: pulumi.Input; /** * The name of the Container Apps Certificate. Changing this forces a new resource to be created. */ name: pulumi.Input; }