1. Packages
  2. Exoscale
  3. API Docs
  4. SshKey
Exoscale v0.56.0 published on Sunday, Mar 3, 2024 by Pulumiverse

exoscale.SshKey

Explore with Pulumi AI

exoscale logo
Exoscale v0.56.0 published on Sunday, Mar 3, 2024 by Pulumiverse

    Import

    An existing SSH key may be imported as a resource by <name>:

    $ pulumi import exoscale:index/sshKey:SshKey \
    

    exoscale_ssh_key.my_ssh_key \

    my-ssh-key

    Create SshKey Resource

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

    Constructor syntax

    new SshKey(name: string, args: SshKeyArgs, opts?: CustomResourceOptions);
    @overload
    def SshKey(resource_name: str,
               args: SshKeyArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def SshKey(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               public_key: Optional[str] = None,
               name: Optional[str] = None)
    func NewSshKey(ctx *Context, name string, args SshKeyArgs, opts ...ResourceOption) (*SshKey, error)
    public SshKey(string name, SshKeyArgs args, CustomResourceOptions? opts = null)
    public SshKey(String name, SshKeyArgs args)
    public SshKey(String name, SshKeyArgs args, CustomResourceOptions options)
    
    type: exoscale:SshKey
    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 SshKeyArgs
    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 SshKeyArgs
    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 SshKeyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SshKeyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SshKeyArgs
    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 sshKeyResource = new Exoscale.SshKey("sshKeyResource", new()
    {
        PublicKey = "string",
        Name = "string",
    });
    
    example, err := exoscale.NewSshKey(ctx, "sshKeyResource", &exoscale.SshKeyArgs{
    	PublicKey: pulumi.String("string"),
    	Name:      pulumi.String("string"),
    })
    
    var sshKeyResource = new SshKey("sshKeyResource", SshKeyArgs.builder()        
        .publicKey("string")
        .name("string")
        .build());
    
    ssh_key_resource = exoscale.SshKey("sshKeyResource",
        public_key="string",
        name="string")
    
    const sshKeyResource = new exoscale.SshKey("sshKeyResource", {
        publicKey: "string",
        name: "string",
    });
    
    type: exoscale:SshKey
    properties:
        name: string
        publicKey: string
    

    SshKey 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 SshKey resource accepts the following input properties:

    PublicKey string
    ❗ The SSH public key that will be authorized in compute instances.
    Name string
    ❗ The SSH key name.
    PublicKey string
    ❗ The SSH public key that will be authorized in compute instances.
    Name string
    ❗ The SSH key name.
    publicKey String
    ❗ The SSH public key that will be authorized in compute instances.
    name String
    ❗ The SSH key name.
    publicKey string
    ❗ The SSH public key that will be authorized in compute instances.
    name string
    ❗ The SSH key name.
    public_key str
    ❗ The SSH public key that will be authorized in compute instances.
    name str
    ❗ The SSH key name.
    publicKey String
    ❗ The SSH public key that will be authorized in compute instances.
    name String
    ❗ The SSH key name.

    Outputs

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

    Fingerprint string
    The SSH key unique identifier.
    Id string
    The provider-assigned unique ID for this managed resource.
    Fingerprint string
    The SSH key unique identifier.
    Id string
    The provider-assigned unique ID for this managed resource.
    fingerprint String
    The SSH key unique identifier.
    id String
    The provider-assigned unique ID for this managed resource.
    fingerprint string
    The SSH key unique identifier.
    id string
    The provider-assigned unique ID for this managed resource.
    fingerprint str
    The SSH key unique identifier.
    id str
    The provider-assigned unique ID for this managed resource.
    fingerprint String
    The SSH key unique identifier.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SshKey Resource

    Get an existing SshKey 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?: SshKeyState, opts?: CustomResourceOptions): SshKey
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            fingerprint: Optional[str] = None,
            name: Optional[str] = None,
            public_key: Optional[str] = None) -> SshKey
    func GetSshKey(ctx *Context, name string, id IDInput, state *SshKeyState, opts ...ResourceOption) (*SshKey, error)
    public static SshKey Get(string name, Input<string> id, SshKeyState? state, CustomResourceOptions? opts = null)
    public static SshKey get(String name, Output<String> id, SshKeyState 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:
    Fingerprint string
    The SSH key unique identifier.
    Name string
    ❗ The SSH key name.
    PublicKey string
    ❗ The SSH public key that will be authorized in compute instances.
    Fingerprint string
    The SSH key unique identifier.
    Name string
    ❗ The SSH key name.
    PublicKey string
    ❗ The SSH public key that will be authorized in compute instances.
    fingerprint String
    The SSH key unique identifier.
    name String
    ❗ The SSH key name.
    publicKey String
    ❗ The SSH public key that will be authorized in compute instances.
    fingerprint string
    The SSH key unique identifier.
    name string
    ❗ The SSH key name.
    publicKey string
    ❗ The SSH public key that will be authorized in compute instances.
    fingerprint str
    The SSH key unique identifier.
    name str
    ❗ The SSH key name.
    public_key str
    ❗ The SSH public key that will be authorized in compute instances.
    fingerprint String
    The SSH key unique identifier.
    name String
    ❗ The SSH key name.
    publicKey String
    ❗ The SSH public key that will be authorized in compute instances.

    Package Details

    Repository
    exoscale pulumiverse/pulumi-exoscale
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the exoscale Terraform Provider.
    exoscale logo
    Exoscale v0.56.0 published on Sunday, Mar 3, 2024 by Pulumiverse