2015-06-03 12:40:53 +02:00
|
|
|
---
|
|
|
|
layout: "cloudstack"
|
|
|
|
page_title: "CloudStack: cloudstack_ssh_keypair"
|
|
|
|
sidebar_current: "docs-cloudstack-resource-ssh-keypair"
|
|
|
|
description: |-
|
2015-06-09 12:38:05 +02:00
|
|
|
Creates or registers an SSH key pair.
|
2015-06-03 12:40:53 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# cloudstack\_ssh\_keypair
|
|
|
|
|
2015-06-09 12:38:05 +02:00
|
|
|
Creates or registers an SSH key pair.
|
2015-06-03 12:40:53 +02:00
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
```
|
2015-06-09 12:38:05 +02:00
|
|
|
resource "cloudstack_ssh_keypair" "default" {
|
2015-06-03 12:40:53 +02:00
|
|
|
name = "myKey"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Argument Reference
|
|
|
|
|
|
|
|
The following arguments are supported:
|
|
|
|
|
2015-06-09 12:38:05 +02:00
|
|
|
* `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.
|
2015-06-03 12:40:53 +02:00
|
|
|
|
2015-06-09 12:38:05 +02:00
|
|
|
* `public_key` - (Optional) The path to a public key that will be uploaded
|
|
|
|
the remote machine. If this is omitted, CloudStack will generate a new
|
|
|
|
key pair. Changing this forces a new resource to be created.
|
2015-06-03 12:40:53 +02:00
|
|
|
|
|
|
|
## Attributes Reference
|
|
|
|
|
|
|
|
The following attributes are exported:
|
|
|
|
|
2015-06-09 12:38:05 +02:00
|
|
|
* `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.
|