FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

rundeck_private_key

The private key resource allows SSH private keys to be stored into Rundeck’s key store. The key store is where Rundeck keeps credentials that are needed to access the nodes on which it runs commands.

Example Usage

resource "rundeck_private_key" "anvils" {
    path = "anvils/id_rsa"
    key_material = "${file("/id_rsa")}"
}

Argument Reference

The following arguments are supported:

The key material is hashed before it is stored in the state file, so sharing the resulting state will not disclose the private key contents.

Attributes Reference

Rundeck does not allow stored private keys to be retrieved via the API, so this resource does not export any attributes.


See the source of this document at Terraform.io