1. Packages
  2. Equinix Metal (Deprecated)
  3. API Docs
  4. ProjectSshKey

This package is deprecated. We recommend using the new Equinix package.

Equinix Metal v3.2.1 published on Thursday, Dec 30, 2021 by DEPRECATED

equinix-metal.ProjectSshKey

Explore with Pulumi AI

equinix-metal logo

This package is deprecated. We recommend using the new Equinix package.

Equinix Metal v3.2.1 published on Thursday, Dec 30, 2021 by DEPRECATED

    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

    using Pulumi;
    using EquinixMetal = Pulumi.EquinixMetal;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var projectId = "<UUID_of_your_project>";
            var testProjectSshKey = new EquinixMetal.ProjectSshKey("testProjectSshKey", new EquinixMetal.ProjectSshKeyArgs
            {
                PublicKey = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDM/unxJeFqxsTJcu6mhqsMHSaVlpu+Jj/P+44zrm6X/MAoHSX3X9oLgujEjjZ74yLfdfe0bJrbL2YgJzNaEkIQQ1VPMHB5EhTKUBGnzlPP0hHTnxsjAm9qDHgUPgvgFDQSAMzdJRJ0Cexo16Ph9VxCoLh3dxiE7s2gaM2FdVg7P8aSxKypsxAhYV3D0AwqzoOyT6WWhBoQ0xZ85XevOTnJCpImSemEGs6nVGEsWcEc1d1YvdxFjAK4SdsKUMkj4Dsy/leKsdi/DEAf356vbMT1UHsXXvy5TlHu/Pa6qF53v32Enz+nhKy7/8W2Yt2yWx8HnQcT2rug9lvCXagJO6oauqRTO77C4QZn13ZLMZgLT66S/tNh2EX0gi6vmIs5dth8uF+K6nxIyKJXbcA4ASg7F1OJrHKFZdTc5v1cPeq6PcbqGgc+8SrPYQmzvQqLoMBuxyos2hUkYOmw3aeWJj9nFa8Wu5WaN89mUeOqSkU4S5cgUzWUOmKey56B/j/s1sVys9rMhZapVs0wL4L9GBBM48N5jAQZnnpo85A8KsZq5ME22bTLqnxsDXqDYZvS7PSI6Dxi7eleOFE/NYYDkrgDLHTQri8ucDMVeVWHgoMY2bPXdn7KKy5jW5jKsf8EPARXg77A4gRYmgKrcwIKqJEUPqyxJBe0CPoGTqgXPRsUiQ== tomk@hp2",
                ProjectId = projectId,
            });
            var testDevice = new EquinixMetal.Device("testDevice", new EquinixMetal.DeviceArgs
            {
                Hostname = "test",
                Plan = "c3.medium.x86",
                Facilities = 
                {
                    "ny5",
                },
                OperatingSystem = "ubuntu_20_04",
                BillingCycle = "hourly",
                ProjectSshKeyIds = 
                {
                    testProjectSshKey.Id,
                },
                ProjectId = projectId,
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-equinix-metal/sdk/v3/go/equinix-metal"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		projectId := "<UUID_of_your_project>"
    		testProjectSshKey, err := equinix - metal.NewProjectSshKey(ctx, "testProjectSshKey", &equinix-metal.ProjectSshKeyArgs{
    			PublicKey: pulumi.String("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDM/unxJeFqxsTJcu6mhqsMHSaVlpu+Jj/P+44zrm6X/MAoHSX3X9oLgujEjjZ74yLfdfe0bJrbL2YgJzNaEkIQQ1VPMHB5EhTKUBGnzlPP0hHTnxsjAm9qDHgUPgvgFDQSAMzdJRJ0Cexo16Ph9VxCoLh3dxiE7s2gaM2FdVg7P8aSxKypsxAhYV3D0AwqzoOyT6WWhBoQ0xZ85XevOTnJCpImSemEGs6nVGEsWcEc1d1YvdxFjAK4SdsKUMkj4Dsy/leKsdi/DEAf356vbMT1UHsXXvy5TlHu/Pa6qF53v32Enz+nhKy7/8W2Yt2yWx8HnQcT2rug9lvCXagJO6oauqRTO77C4QZn13ZLMZgLT66S/tNh2EX0gi6vmIs5dth8uF+K6nxIyKJXbcA4ASg7F1OJrHKFZdTc5v1cPeq6PcbqGgc+8SrPYQmzvQqLoMBuxyos2hUkYOmw3aeWJj9nFa8Wu5WaN89mUeOqSkU4S5cgUzWUOmKey56B/j/s1sVys9rMhZapVs0wL4L9GBBM48N5jAQZnnpo85A8KsZq5ME22bTLqnxsDXqDYZvS7PSI6Dxi7eleOFE/NYYDkrgDLHTQri8ucDMVeVWHgoMY2bPXdn7KKy5jW5jKsf8EPARXg77A4gRYmgKrcwIKqJEUPqyxJBe0CPoGTqgXPRsUiQ== tomk@hp2"),
    			ProjectId: pulumi.String(projectId),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = equinix - metal.NewDevice(ctx, "testDevice", &equinix-metal.DeviceArgs{
    			Hostname: pulumi.String("test"),
    			Plan:     pulumi.String("c3.medium.x86"),
    			Facilities: pulumi.StringArray{
    				pulumi.String("ny5"),
    			},
    			OperatingSystem: pulumi.String("ubuntu_20_04"),
    			BillingCycle:    pulumi.String("hourly"),
    			ProjectSshKeyIds: pulumi.StringArray{
    				testProjectSshKey.ID(),
    			},
    			ProjectId: pulumi.String(projectId),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Coming soon!

    import pulumi
    import pulumi_equinix_metal as equinix_metal
    
    project_id = "<UUID_of_your_project>"
    test_project_ssh_key = equinix_metal.ProjectSshKey("testProjectSshKey",
        public_key="ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDM/unxJeFqxsTJcu6mhqsMHSaVlpu+Jj/P+44zrm6X/MAoHSX3X9oLgujEjjZ74yLfdfe0bJrbL2YgJzNaEkIQQ1VPMHB5EhTKUBGnzlPP0hHTnxsjAm9qDHgUPgvgFDQSAMzdJRJ0Cexo16Ph9VxCoLh3dxiE7s2gaM2FdVg7P8aSxKypsxAhYV3D0AwqzoOyT6WWhBoQ0xZ85XevOTnJCpImSemEGs6nVGEsWcEc1d1YvdxFjAK4SdsKUMkj4Dsy/leKsdi/DEAf356vbMT1UHsXXvy5TlHu/Pa6qF53v32Enz+nhKy7/8W2Yt2yWx8HnQcT2rug9lvCXagJO6oauqRTO77C4QZn13ZLMZgLT66S/tNh2EX0gi6vmIs5dth8uF+K6nxIyKJXbcA4ASg7F1OJrHKFZdTc5v1cPeq6PcbqGgc+8SrPYQmzvQqLoMBuxyos2hUkYOmw3aeWJj9nFa8Wu5WaN89mUeOqSkU4S5cgUzWUOmKey56B/j/s1sVys9rMhZapVs0wL4L9GBBM48N5jAQZnnpo85A8KsZq5ME22bTLqnxsDXqDYZvS7PSI6Dxi7eleOFE/NYYDkrgDLHTQri8ucDMVeVWHgoMY2bPXdn7KKy5jW5jKsf8EPARXg77A4gRYmgKrcwIKqJEUPqyxJBe0CPoGTqgXPRsUiQ== tomk@hp2",
        project_id=project_id)
    test_device = equinix_metal.Device("testDevice",
        hostname="test",
        plan="c3.medium.x86",
        facilities=["ny5"],
        operating_system="ubuntu_20_04",
        billing_cycle="hourly",
        project_ssh_key_ids=[test_project_ssh_key.id],
        project_id=project_id)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as equinix_metal from "@pulumi/equinix-metal";
    
    const projectId = "<UUID_of_your_project>";
    const testProjectSshKey = new equinix_metal.ProjectSshKey("testProjectSshKey", {
        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 testDevice = new equinix_metal.Device("testDevice", {
        hostname: "test",
        plan: "c3.medium.x86",
        facilities: ["ny5"],
        operatingSystem: "ubuntu_20_04",
        billingCycle: "hourly",
        projectSshKeyIds: [testProjectSshKey.id],
        projectId: projectId,
    });
    

    Coming soon!

    Create ProjectSshKey Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ProjectSshKey(name: string, args: ProjectSshKeyArgs, opts?: CustomResourceOptions);
    @overload
    def ProjectSshKey(resource_name: str,
                      args: ProjectSshKeyArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProjectSshKey(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      project_id: Optional[str] = None,
                      public_key: Optional[str] = None,
                      name: Optional[str] = None)
    func NewProjectSshKey(ctx *Context, name string, args ProjectSshKeyArgs, opts ...ResourceOption) (*ProjectSshKey, error)
    public ProjectSshKey(string name, ProjectSshKeyArgs args, CustomResourceOptions? opts = null)
    public ProjectSshKey(String name, ProjectSshKeyArgs args)
    public ProjectSshKey(String name, ProjectSshKeyArgs args, CustomResourceOptions options)
    
    type: equinix-metal:ProjectSshKey
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ProjectSshKeyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ProjectSshKeyArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ProjectSshKeyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectSshKeyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectSshKeyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var projectSshKeyResource = new EquinixMetal.ProjectSshKey("projectSshKeyResource", new()
    {
        ProjectId = "string",
        PublicKey = "string",
        Name = "string",
    });
    
    example, err := equinixmetal.NewProjectSshKey(ctx, "projectSshKeyResource", &equinixmetal.ProjectSshKeyArgs{
    	ProjectId: pulumi.String("string"),
    	PublicKey: pulumi.String("string"),
    	Name:      pulumi.String("string"),
    })
    
    var projectSshKeyResource = new ProjectSshKey("projectSshKeyResource", ProjectSshKeyArgs.builder()        
        .projectId("string")
        .publicKey("string")
        .name("string")
        .build());
    
    project_ssh_key_resource = equinix_metal.ProjectSshKey("projectSshKeyResource",
        project_id="string",
        public_key="string",
        name="string")
    
    const projectSshKeyResource = new equinix_metal.ProjectSshKey("projectSshKeyResource", {
        projectId: "string",
        publicKey: "string",
        name: "string",
    });
    
    type: equinix-metal:ProjectSshKey
    properties:
        name: string
        projectId: string
        publicKey: string
    

    ProjectSshKey Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ProjectSshKey resource accepts the following input properties:

    ProjectId string
    The ID of parent project
    PublicKey string
    The public key. If this is a file, it can be read using the file interpolation function
    Name string
    The name of the SSH key for identification
    ProjectId string
    The ID of parent project
    PublicKey string
    The public key. If this is a file, it can be read using the file interpolation function
    Name string
    The name of the SSH key for identification
    projectId String
    The ID of parent project
    publicKey String
    The public key. If this is a file, it can be read using the file interpolation function
    name String
    The name of the SSH key for identification
    projectId string
    The ID of parent project
    publicKey string
    The public key. If this is a file, it can be read using the file interpolation function
    name string
    The name of the SSH key for identification
    project_id str
    The ID of parent project
    public_key str
    The public key. If this is a file, it can be read using the file interpolation function
    name str
    The name of the SSH key for identification
    projectId String
    The ID of parent project
    publicKey String
    The public key. If this is a file, it can be read using the file interpolation function
    name String
    The name of the SSH key for identification

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ProjectSshKey resource produces the following output properties:

    Created string
    The timestamp for when the SSH key was created
    Fingerprint string
    The fingerprint of the SSH key
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerId string
    The ID of parent project (same as project_id)
    Updated string
    The timestamp for the last time the SSH key was updated
    Created string
    The timestamp for when the SSH key was created
    Fingerprint string
    The fingerprint of the SSH key
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerId string
    The ID of parent project (same as project_id)
    Updated string
    The timestamp for the last time the SSH key was updated
    created String
    The timestamp for when the SSH key was created
    fingerprint String
    The fingerprint of the SSH key
    id String
    The provider-assigned unique ID for this managed resource.
    ownerId String
    The ID of parent project (same as project_id)
    updated String
    The timestamp for the last time the SSH key was updated
    created string
    The timestamp for when the SSH key was created
    fingerprint string
    The fingerprint of the SSH key
    id string
    The provider-assigned unique ID for this managed resource.
    ownerId string
    The ID of parent project (same as project_id)
    updated string
    The timestamp for the last time the SSH key was updated
    created str
    The timestamp for when the SSH key was created
    fingerprint str
    The fingerprint of the SSH key
    id str
    The provider-assigned unique ID for this managed resource.
    owner_id str
    The ID of parent project (same as project_id)
    updated str
    The timestamp for the last time the SSH key was updated
    created String
    The timestamp for when the SSH key was created
    fingerprint String
    The fingerprint of the SSH key
    id String
    The provider-assigned unique ID for this managed resource.
    ownerId String
    The ID of parent project (same as project_id)
    updated String
    The timestamp for the last time the SSH key was updated

    Look up Existing ProjectSshKey Resource

    Get an existing ProjectSshKey resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ProjectSshKeyState, opts?: CustomResourceOptions): ProjectSshKey
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created: Optional[str] = None,
            fingerprint: Optional[str] = None,
            name: Optional[str] = None,
            owner_id: Optional[str] = None,
            project_id: Optional[str] = None,
            public_key: Optional[str] = None,
            updated: Optional[str] = None) -> ProjectSshKey
    func GetProjectSshKey(ctx *Context, name string, id IDInput, state *ProjectSshKeyState, opts ...ResourceOption) (*ProjectSshKey, error)
    public static ProjectSshKey Get(string name, Input<string> id, ProjectSshKeyState? state, CustomResourceOptions? opts = null)
    public static ProjectSshKey get(String name, Output<String> id, ProjectSshKeyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Created string
    The timestamp for when the SSH key was created
    Fingerprint string
    The fingerprint of the SSH key
    Name string
    The name of the SSH key for identification
    OwnerId string
    The ID of parent project (same as project_id)
    ProjectId string
    The ID of parent project
    PublicKey string
    The public key. If this is a file, it can be read using the file interpolation function
    Updated string
    The timestamp for the last time the SSH key was updated
    Created string
    The timestamp for when the SSH key was created
    Fingerprint string
    The fingerprint of the SSH key
    Name string
    The name of the SSH key for identification
    OwnerId string
    The ID of parent project (same as project_id)
    ProjectId string
    The ID of parent project
    PublicKey string
    The public key. If this is a file, it can be read using the file interpolation function
    Updated string
    The timestamp for the last time the SSH key was updated
    created String
    The timestamp for when the SSH key was created
    fingerprint String
    The fingerprint of the SSH key
    name String
    The name of the SSH key for identification
    ownerId String
    The ID of parent project (same as project_id)
    projectId String
    The ID of parent project
    publicKey String
    The public key. If this is a file, it can be read using the file interpolation function
    updated String
    The timestamp for the last time the SSH key was updated
    created string
    The timestamp for when the SSH key was created
    fingerprint string
    The fingerprint of the SSH key
    name string
    The name of the SSH key for identification
    ownerId string
    The ID of parent project (same as project_id)
    projectId string
    The ID of parent project
    publicKey string
    The public key. If this is a file, it can be read using the file interpolation function
    updated string
    The timestamp for the last time the SSH key was updated
    created str
    The timestamp for when the SSH key was created
    fingerprint str
    The fingerprint of the SSH key
    name str
    The name of the SSH key for identification
    owner_id str
    The ID of parent project (same as project_id)
    project_id str
    The ID of parent project
    public_key str
    The public key. If this is a file, it can be read using the file interpolation function
    updated str
    The timestamp for the last time the SSH key was updated
    created String
    The timestamp for when the SSH key was created
    fingerprint String
    The fingerprint of the SSH key
    name String
    The name of the SSH key for identification
    ownerId String
    The ID of parent project (same as project_id)
    projectId String
    The ID of parent project
    publicKey String
    The public key. If this is a file, it can be read using the file interpolation function
    updated String
    The timestamp for the last time the SSH key was updated

    Package Details

    Repository
    Equinix Metal pulumi/pulumi-equinix-metal
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the metal Terraform Provider.
    equinix-metal logo

    This package is deprecated. We recommend using the new Equinix package.

    Equinix Metal v3.2.1 published on Thursday, Dec 30, 2021 by DEPRECATED