UNPKG

@cuemby/equinix

Version:

A Pulumi package for creating and managing equinix cloud resources.

132 lines (131 loc) 5.21 kB
import * as pulumi from "@pulumi/pulumi"; /** * Provides an Equinix Metal project SSH key resource to manage project-specific SSH keys. * Project SSH keys will only be populated onto servers that belong to that project, in contrast to * User SSH Keys. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as equinix from "@cuemby/equinix"; * * const projectId = "<UUID_of_your_project>"; * const testMetalProjectSSHKey = new equinix.MetalProjectSSHKey("testMetalProjectSSHKey", { * publicKey: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDM/unxJeFqxsTJcu6mhqsMHSaVlpu+Jj/P+44zrm6X/MAoHSX3X9oLgujEjjZ74yLfdfe0bJrbL2YgJzNaEkIQQ1VPMHB5EhTKUBGnzlPP0hHTnxsjAm9qDHgUPgvgFDQSAMzdJRJ0Cexo16Ph9VxCoLh3dxiE7s2gaM2FdVg7P8aSxKypsxAhYV3D0AwqzoOyT6WWhBoQ0xZ85XevOTnJCpImSemEGs6nVGEsWcEc1d1YvdxFjAK4SdsKUMkj4Dsy/leKsdi/DEAf356vbMT1UHsXXvy5TlHu/Pa6qF53v32Enz+nhKy7/8W2Yt2yWx8HnQcT2rug9lvCXagJO6oauqRTO77C4QZn13ZLMZgLT66S/tNh2EX0gi6vmIs5dth8uF+K6nxIyKJXbcA4ASg7F1OJrHKFZdTc5v1cPeq6PcbqGgc+8SrPYQmzvQqLoMBuxyos2hUkYOmw3aeWJj9nFa8Wu5WaN89mUeOqSkU4S5cgUzWUOmKey56B/j/s1sVys9rMhZapVs0wL4L9GBBM48N5jAQZnnpo85A8KsZq5ME22bTLqnxsDXqDYZvS7PSI6Dxi7eleOFE/NYYDkrgDLHTQri8ucDMVeVWHgoMY2bPXdn7KKy5jW5jKsf8EPARXg77A4gRYmgKrcwIKqJEUPqyxJBe0CPoGTqgXPRsUiQ== tomk@hp2", * projectId: projectId, * }); * const testMetalDevice = new equinix.MetalDevice("testMetalDevice", { * hostname: "test", * plan: "c3.medium.x86", * facilities: ["ny5"], * operatingSystem: "ubuntu_20_04", * billingCycle: "hourly", * projectSshKeyIds: [testMetalProjectSSHKey.id], * projectId: projectId, * }); * ``` */ export declare class MetalProjectSSHKey extends pulumi.CustomResource { /** * Get an existing MetalProjectSSHKey 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<pulumi.ID>, state?: MetalProjectSSHKeyState, opts?: pulumi.CustomResourceOptions): MetalProjectSSHKey; /** * Returns true if the given object is an instance of MetalProjectSSHKey. 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 MetalProjectSSHKey; /** * The timestamp for when the SSH key was created. */ readonly created: pulumi.Output<string>; /** * The fingerprint of the SSH key. */ readonly fingerprint: pulumi.Output<string>; /** * The name of the SSH key for identification. */ readonly name: pulumi.Output<string>; /** * The ID of parent project (same as project_id). */ readonly ownerId: pulumi.Output<string>; /** * The ID of parent project. */ readonly projectId: pulumi.Output<string>; /** * The public key. If this is a file, it can be read using the file interpolation function. */ readonly publicKey: pulumi.Output<string>; /** * The timestamp for the last time the SSH key was updated. */ readonly updated: pulumi.Output<string>; /** * Create a MetalProjectSSHKey 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: MetalProjectSSHKeyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MetalProjectSSHKey resources. */ export interface MetalProjectSSHKeyState { /** * The timestamp for when the SSH key was created. */ created?: pulumi.Input<string>; /** * The fingerprint of the SSH key. */ fingerprint?: pulumi.Input<string>; /** * The name of the SSH key for identification. */ name?: pulumi.Input<string>; /** * The ID of parent project (same as project_id). */ ownerId?: pulumi.Input<string>; /** * The ID of parent project. */ projectId?: pulumi.Input<string>; /** * The public key. If this is a file, it can be read using the file interpolation function. */ publicKey?: pulumi.Input<string>; /** * The timestamp for the last time the SSH key was updated. */ updated?: pulumi.Input<string>; } /** * The set of arguments for constructing a MetalProjectSSHKey resource. */ export interface MetalProjectSSHKeyArgs { /** * The name of the SSH key for identification. */ name?: pulumi.Input<string>; /** * The ID of parent project. */ projectId: pulumi.Input<string>; /** * The public key. If this is a file, it can be read using the file interpolation function. */ publicKey: pulumi.Input<string>; }