import * as pulumi from "@pulumi/pulumi"; /** * Resource for managing GPG Signing Keys for Terraform/OpenTofu Providers in the IaCM Provider Registry. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = new harness.platform.InfraProviderSigningKey("example", { * keyId: "51852D87348FFC4C", * keyName: "HashiCorp Security", * user: "security@example.com", * asciiArmor: `-----BEGIN PGP PUBLIC KEY BLOCK----- * * mQINBGB9+xkBEACabYZOWKmgZsHTdRDiyPJxhbuUiKX65GUWkyRMJKi/1dviVxOX * PG6hBPtF48IFnVgxKpIb7G6NjBousAV+CuLlv5yqFKpOZEGC6sBV+Gx8Vu1CICpl * Zm+HpQPcIzwBpN+Ar4l/exCG/f/MZq/oxGgH+TyRF3XcYDjG8dbJCpHO5nQ5Cy9h * QIp3/Bh09kET6lk+4QlofNgHKVT2epV8iK1cXlbQe2tZtfCUtxk+pxvU0UHXp+AB * 0xc3/gIhjZp/dePmCOyQyGPJbp5bpO4UeAJ6frqhexmNlaw9Z897ltZmRLGq1p4a * RnWL8FPkBz9SCSKXS8uNyV5oMNVn4G1obCkc106iWuKBTibffYQzq5TG8FYVJKrh * RwWB6piacEB8hl20IIWSxIM3J9tT7CPSnk5RYYCTRHgA5OOrqZhC7JefudrP8n+M * pxkDgNORDu7GCfAuisrf7dXYjLsxG4tu22DBJJC0c/IpRpXDnOuJN1Q5e/3VUKKW * mypNumuQpP5lc1ZFG64TRzb1HR6oIdHfbrVQfdiQXpvdcFx+Bc2WH9F/V+Y0Lfh0 * p0oGG1esL/vSpKpKPcLTF5LqCzTbkXj8iFzLRlSMQxPqxJJhHpPnMOCLnNPAKKNi * Ht5vTpHYtPvVLQmQM3KcBqzWzYXvJFKPLXdBdDvVqKPvXjnKfJxLEZTYYQARAQAB * tDdIYXNoaUNvcnAgU2VjdXJpdHkgKGhhc2hpY29ycC5jb20vc2VjdXJpdHkpIDxz * ZWN1cml0eUBoYXNoaWNvcnAuY29tPokCVAQTAQoAPhYhBMh0AR8KtAURDQIQVVlW * XFz/7TQFBGB9+xkCGwMFCQPCZwAFCwkIBwMFFQoJCAsFFgIDAQACHgECF4AACgkQ * VlWXFz/7TQQbKQ//d9Iq+6QZJMqjJUGEXRZJQKJTYMTnKYBvTlLDNMmQbW7fwPSe * +Kcr7Ck3Oc6ySMJWBJGfJHVJDKNkBwlPCqLOBzGjbfHHGLOZiMzxKmLLVPGwqbHZ * -----END PGP PUBLIC KEY BLOCK----- * `, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import harness:platform/infraProviderSigningKey:InfraProviderSigningKey example * ``` */ export declare class InfraProviderSigningKey extends pulumi.CustomResource { /** * Get an existing InfraProviderSigningKey resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: InfraProviderSigningKeyState, opts?: pulumi.CustomResourceOptions): InfraProviderSigningKey; /** * Returns true if the given object is an instance of InfraProviderSigningKey. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is InfraProviderSigningKey; /** * ASCII-armored GPG public key. */ readonly asciiArmor: pulumi.Output; /** * Creation timestamp. */ readonly createdAt: pulumi.Output; /** * GPG key ID. */ readonly keyId: pulumi.Output; /** * GPG key name. */ readonly keyName: pulumi.Output; /** * Last updated timestamp. */ readonly updatedAt: pulumi.Output; /** * User who uploaded the key. */ readonly user: pulumi.Output; /** * Create a InfraProviderSigningKey resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: InfraProviderSigningKeyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering InfraProviderSigningKey resources. */ export interface InfraProviderSigningKeyState { /** * ASCII-armored GPG public key. */ asciiArmor?: pulumi.Input; /** * Creation timestamp. */ createdAt?: pulumi.Input; /** * GPG key ID. */ keyId?: pulumi.Input; /** * GPG key name. */ keyName?: pulumi.Input; /** * Last updated timestamp. */ updatedAt?: pulumi.Input; /** * User who uploaded the key. */ user?: pulumi.Input; } /** * The set of arguments for constructing a InfraProviderSigningKey resource. */ export interface InfraProviderSigningKeyArgs { /** * ASCII-armored GPG public key. */ asciiArmor: pulumi.Input; /** * GPG key ID. */ keyId: pulumi.Input; /** * GPG key name. */ keyName: pulumi.Input; /** * User who uploaded the key. */ user: pulumi.Input; } //# sourceMappingURL=infraProviderSigningKey.d.ts.map