Files
opentf/website/source/docs/providers/cloudstack/r/ssh_keypair.html.markdown
George Christou 61277c0dbd website/docs: Run terraform fmt on code examples (#12075)
* docs/vsphere: Fix code block

* docs: Convert `...` to `# ...` to allow `terraform fmt`ing

* docs: Trim trailing whitespace

* docs: First-pass run of `terraform fmt` on code examples
2017-02-19 00:48:50 +02:00

1.4 KiB

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
cloudstack CloudStack: cloudstack_ssh_keypair docs-cloudstack-resource-ssh-keypair Creates or registers an SSH key pair.

cloudstack_ssh_keypair

Creates or registers an SSH key pair.

Example Usage

resource "cloudstack_ssh_keypair" "default" {
  name       = "myKey"
  public_key = "${file("~/.ssh/id_rsa.pub")}"
  project    = "myProject"
}

Argument Reference

The following arguments are supported:

  • name - (Required) The name of the SSH key pair. This is a unique value within a CloudStack account. Changing this forces a new resource to be created.

  • public_key - (Optional) The public key to register with CloudStack. If this is omitted, CloudStack will generate a new key pair. The key can be loaded from a file on disk using the file() interpolation function. Changing this forces a new resource to be created.

  • project - (Optional) The name or ID of the project to register this key to. Changing this forces a new resource to be created.

Attributes Reference

The following attributes are exported:

  • id - The key pair ID.
  • fingerprint - The fingerprint of the public key specified or created.
  • private_key - The private key generated by CloudStack. Only available if CloudStack generated the key pair.