ProjectSshKey
Provides a Packet 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 Packet = Pulumi.Packet;
class MyStack : Stack
{
public MyStack()
{
var projectId = "<UUID_of_your_project>";
var testProjectSshKey = new Packet.ProjectSshKey("testProjectSshKey", new Packet.ProjectSshKeyArgs
{
Name = "test",
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 Packet.Device("testDevice", new Packet.DeviceArgs
{
Hostname = "test",
Plan = "baremetal_0",
Facilities =
{
"ewr1",
},
OperatingSystem = "ubuntu_16_04",
BillingCycle = "hourly",
ProjectSshKeyIds =
{
testProjectSshKey.Id,
},
ProjectId = projectId,
});
}
}
Coming soon!
import pulumi
import pulumi_packet as packet
project_id = "<UUID_of_your_project>"
test_project_ssh_key = packet.ProjectSshKey("testProjectSshKey",
name="test",
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 = packet.Device("testDevice",
hostname="test",
plan="baremetal_0",
facilities=["ewr1"],
operating_system="ubuntu_16_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 packet from "@pulumi/packet";
const projectId = "<UUID_of_your_project>";
const testProjectSshKey = new packet.ProjectSshKey("testProjectSshKey", {
name: "test",
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 packet.Device("testDevice", {
hostname: "test",
plan: "baremetal_0",
facilities: ["ewr1"],
operatingSystem: "ubuntu_16_04",
billingCycle: "hourly",
projectSshKeyIds: [testProjectSshKey.id],
projectId: projectId,
});Create a ProjectSshKey Resource
new ProjectSshKey(name: string, args: ProjectSshKeyArgs, opts?: CustomResourceOptions);def ProjectSshKey(resource_name, opts=None, name=None, project_id=None, public_key=None, __props__=None);func NewProjectSshKey(ctx *Context, name string, args ProjectSshKeyArgs, opts ...ResourceOption) (*ProjectSshKey, error)public ProjectSshKey(string name, ProjectSshKeyArgs args, CustomResourceOptions? opts = null)- 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.
- opts ResourceOptions
- A bag of options that control this 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.
ProjectSshKey Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The ProjectSshKey resource accepts the following input properties:
- name str
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
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.
- Owner
Id 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.
- Owner
Id 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.
- owner
Id 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 an 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): ProjectSshKeystatic get(resource_name, id, opts=None, created=None, fingerprint=None, name=None, owner_id=None, project_id=None, public_key=None, updated=None, __props__=None);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)- 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.
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
- Owner
Id string The ID of parent project (same as project_id)
- Project
Id string The ID of parent project
- Public
Key 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
- Owner
Id string The ID of parent project (same as project_id)
- Project
Id string The ID of parent project
- Public
Key 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
- owner
Id string The ID of parent project (same as project_id)
- project
Id string The ID of parent project
- public
Key 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
Package Details
- Repository
- https://github.com/pulumi/pulumi-packet
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
packetTerraform Provider.