scaleway.account.SshKey
Explore with Pulumi AI
The scaleway.account.SshKey
resource allows you to create and manage the Projects of a Scaleway Organization.
Refer to the Organizations and Projects documentation and API documentation for more information.
!> Important: The resource scaleway.account.SshKey
has been deprecated and will no longer be supported. Instead, use scaleway.iam.SshKey
.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.account.SshKey("main", {
name: "main",
publicKey: "<YOUR-PUBLIC-SSH-KEY>",
});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.account.SshKey("main",
name="main",
public_key="<YOUR-PUBLIC-SSH-KEY>")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/account"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := account.NewSshKey(ctx, "main", &account.SshKeyArgs{
Name: pulumi.String("main"),
PublicKey: pulumi.String("<YOUR-PUBLIC-SSH-KEY>"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Account.SshKey("main", new()
{
Name = "main",
PublicKey = "<YOUR-PUBLIC-SSH-KEY>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.account.SshKey;
import com.pulumi.scaleway.account.SshKeyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var main = new SshKey("main", SshKeyArgs.builder()
.name("main")
.publicKey("<YOUR-PUBLIC-SSH-KEY>")
.build());
}
}
resources:
main:
type: scaleway:account:SshKey
properties:
name: main
publicKey: <YOUR-PUBLIC-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,
disabled: Optional[bool] = None,
name: Optional[str] = None,
project_id: 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: scaleway:account: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.
Constructor example
The following reference example uses placeholder values for all input properties.
var sshKeyResource = new Scaleway.Account.SshKey("sshKeyResource", new()
{
PublicKey = "string",
Disabled = false,
Name = "string",
ProjectId = "string",
});
example, err := account.NewSshKey(ctx, "sshKeyResource", &account.SshKeyArgs{
PublicKey: pulumi.String("string"),
Disabled: pulumi.Bool(false),
Name: pulumi.String("string"),
ProjectId: pulumi.String("string"),
})
var sshKeyResource = new SshKey("sshKeyResource", SshKeyArgs.builder()
.publicKey("string")
.disabled(false)
.name("string")
.projectId("string")
.build());
ssh_key_resource = scaleway.account.SshKey("sshKeyResource",
public_key="string",
disabled=False,
name="string",
project_id="string")
const sshKeyResource = new scaleway.account.SshKey("sshKeyResource", {
publicKey: "string",
disabled: false,
name: "string",
projectId: "string",
});
type: scaleway:account:SshKey
properties:
disabled: false
name: string
projectId: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SshKey resource accepts the following input properties:
- public_
key str - The public SSH key to be added.
- disabled bool
- The SSH key status
- name str
- The name of the SSH key.
- project_
id str project_id
) The ID of the project the SSH key is associated with.
Outputs
All input properties are implicitly available as output properties. Additionally, the SshKey resource produces the following output properties:
- Created
At string - The date and time of the creation of the iam SSH Key
- Fingerprint string
- The fingerprint of the iam SSH key
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - The organization ID the SSH key is associated with.
- Updated
At string - The date and time of the last update of the iam SSH Key
- Created
At string - The date and time of the creation of the iam SSH Key
- Fingerprint string
- The fingerprint of the iam SSH key
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - The organization ID the SSH key is associated with.
- Updated
At string - The date and time of the last update of the iam SSH Key
- created
At String - The date and time of the creation of the iam SSH Key
- fingerprint String
- The fingerprint of the iam SSH key
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - The organization ID the SSH key is associated with.
- updated
At String - The date and time of the last update of the iam SSH Key
- created
At string - The date and time of the creation of the iam SSH Key
- fingerprint string
- The fingerprint of the iam SSH key
- id string
- The provider-assigned unique ID for this managed resource.
- organization
Id string - The organization ID the SSH key is associated with.
- updated
At string - The date and time of the last update of the iam SSH Key
- created_
at str - The date and time of the creation of the iam SSH Key
- fingerprint str
- The fingerprint of the iam SSH key
- id str
- The provider-assigned unique ID for this managed resource.
- organization_
id str - The organization ID the SSH key is associated with.
- updated_
at str - The date and time of the last update of the iam SSH Key
- created
At String - The date and time of the creation of the iam SSH Key
- fingerprint String
- The fingerprint of the iam SSH key
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - The organization ID the SSH key is associated with.
- updated
At String - The date and time of the last update of the iam SSH Key
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,
created_at: Optional[str] = None,
disabled: Optional[bool] = None,
fingerprint: Optional[str] = None,
name: Optional[str] = None,
organization_id: Optional[str] = None,
project_id: Optional[str] = None,
public_key: Optional[str] = None,
updated_at: 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)
resources: _: type: scaleway:account:SshKey get: id: ${id}
- 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.
- Created
At string - The date and time of the creation of the iam SSH Key
- Disabled bool
- The SSH key status
- Fingerprint string
- The fingerprint of the iam SSH key
- Name string
- The name of the SSH key.
- Organization
Id string - The organization ID the SSH key is associated with.
- Project
Id string project_id
) The ID of the project the SSH key is associated with.- Public
Key string - The public SSH key to be added.
- Updated
At string - The date and time of the last update of the iam SSH Key
- Created
At string - The date and time of the creation of the iam SSH Key
- Disabled bool
- The SSH key status
- Fingerprint string
- The fingerprint of the iam SSH key
- Name string
- The name of the SSH key.
- Organization
Id string - The organization ID the SSH key is associated with.
- Project
Id string project_id
) The ID of the project the SSH key is associated with.- Public
Key string - The public SSH key to be added.
- Updated
At string - The date and time of the last update of the iam SSH Key
- created
At String - The date and time of the creation of the iam SSH Key
- disabled Boolean
- The SSH key status
- fingerprint String
- The fingerprint of the iam SSH key
- name String
- The name of the SSH key.
- organization
Id String - The organization ID the SSH key is associated with.
- project
Id String project_id
) The ID of the project the SSH key is associated with.- public
Key String - The public SSH key to be added.
- updated
At String - The date and time of the last update of the iam SSH Key
- created
At string - The date and time of the creation of the iam SSH Key
- disabled boolean
- The SSH key status
- fingerprint string
- The fingerprint of the iam SSH key
- name string
- The name of the SSH key.
- organization
Id string - The organization ID the SSH key is associated with.
- project
Id string project_id
) The ID of the project the SSH key is associated with.- public
Key string - The public SSH key to be added.
- updated
At string - The date and time of the last update of the iam SSH Key
- created_
at str - The date and time of the creation of the iam SSH Key
- disabled bool
- The SSH key status
- fingerprint str
- The fingerprint of the iam SSH key
- name str
- The name of the SSH key.
- organization_
id str - The organization ID the SSH key is associated with.
- project_
id str project_id
) The ID of the project the SSH key is associated with.- public_
key str - The public SSH key to be added.
- updated_
at str - The date and time of the last update of the iam SSH Key
- created
At String - The date and time of the creation of the iam SSH Key
- disabled Boolean
- The SSH key status
- fingerprint String
- The fingerprint of the iam SSH key
- name String
- The name of the SSH key.
- organization
Id String - The organization ID the SSH key is associated with.
- project
Id String project_id
) The ID of the project the SSH key is associated with.- public
Key String - The public SSH key to be added.
- updated
At String - The date and time of the last update of the iam SSH Key
Import
SSH keys can be imported using the id
, e.g.
bash
$ pulumi import scaleway:account/sshKey:SshKey main 11111111-1111-1111-1111-111111111111
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.