mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-27 18:00:48 -04:00
788 B
788 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| triton | Triton: triton_key | docs-triton-resource-key | The `triton_key` resource represents an SSH key for a Triton account. |
triton_key
The triton_key resource represents an SSH key for a Triton account.
Example Usages
Create a key
resource "triton_key" "example" {
name = "Example Key"
key = "${file("keys/id_rsa")}"
}
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 thefileinterpolation.