2016-02-10 21:30:32 +01:00
|
|
|
---
|
|
|
|
layout: "triton"
|
|
|
|
page_title: "Triton: triton_key"
|
2017-03-30 22:23:31 +02:00
|
|
|
sidebar_current: "docs-triton-resource-key"
|
2016-02-10 21:30:32 +01:00
|
|
|
description: |-
|
2017-02-18 23:48:50 +01:00
|
|
|
The `triton_key` resource represents an SSH key for a Triton account.
|
2016-02-10 21:30:32 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
# triton\_key
|
|
|
|
|
|
|
|
The `triton_key` resource represents an SSH key for a Triton account.
|
|
|
|
|
|
|
|
## Example Usages
|
|
|
|
|
|
|
|
Create a key
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
resource "triton_key" "example" {
|
2017-02-18 23:48:50 +01:00
|
|
|
name = "Example Key"
|
|
|
|
key = "${file("keys/id_rsa")}"
|
2016-02-10 21:30:32 +01:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Argument Reference
|
|
|
|
|
|
|
|
The following arguments are supported:
|
|
|
|
|
|
|
|
* `name` - (string, Change forces new resource)
|
|
|
|
The name of the key. If this is left empty, the name is inferred from the comment in the SSH key material.
|
|
|
|
|
|
|
|
* `key` - (string, Required, Change forces new resource)
|
|
|
|
The SSH key material. In order to read this from a file, use the `file` interpolation.
|
|
|
|
|