import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data source for listing GPG Signing Keys from the IaCM Provider Registry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const all = harness.platform.getInfraProviderSigningKeys({}); * export const allSigningKeys = all.then(all => all.signingKeys); * const hashicorpKey = all.then(all => .filter(key => key.keyId == "51852D87348FFC4C").map(key => (key))); * ``` */ export declare function getInfraProviderSigningKeys(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getInfraProviderSigningKeys. */ export interface GetInfraProviderSigningKeysResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of signing keys. */ readonly signingKeys: outputs.platform.GetInfraProviderSigningKeysSigningKey[]; } /** * Data source for listing GPG Signing Keys from the IaCM Provider Registry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const all = harness.platform.getInfraProviderSigningKeys({}); * export const allSigningKeys = all.then(all => all.signingKeys); * const hashicorpKey = all.then(all => .filter(key => key.keyId == "51852D87348FFC4C").map(key => (key))); * ``` */ export declare function getInfraProviderSigningKeysOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getInfraProviderSigningKeys.d.ts.map