import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Front Door (standard/premium) Secret. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorSecret({ * name: "example-secret", * profileName: "example-profile", * resourceGroupName: "example-resources", * }); * ``` */ export declare function getFrontdoorSecret(args: GetFrontdoorSecretArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFrontdoorSecret. */ export interface GetFrontdoorSecretArgs { /** * Specifies the name of the Front Door Secret. */ name: string; /** * The name of the Front Door Profile within which the Front Door Secret exists. */ profileName: string; /** * The name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: string; } /** * A collection of values returned by getFrontdoorSecret. */ export interface GetFrontdoorSecretResult { /** * Specifies the ID of the Front Door Profile within which this Front Door Secret exists. */ readonly cdnFrontdoorProfileId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly profileName: string; readonly resourceGroupName: string; /** * A `secret` block as defined below. */ readonly secrets: outputs.cdn.GetFrontdoorSecretSecret[]; } /** * Use this data source to access information about an existing Front Door (standard/premium) Secret. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getFrontdoorSecret({ * name: "example-secret", * profileName: "example-profile", * resourceGroupName: "example-resources", * }); * ``` */ export declare function getFrontdoorSecretOutput(args: GetFrontdoorSecretOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFrontdoorSecret. */ export interface GetFrontdoorSecretOutputArgs { /** * Specifies the name of the Front Door Secret. */ name: pulumi.Input; /** * The name of the Front Door Profile within which the Front Door Secret exists. */ profileName: pulumi.Input; /** * The name of the Resource Group where the Front Door Profile exists. */ resourceGroupName: pulumi.Input; }