Closed displague closed 6 years ago
Adds support for managing Linode SSH Key resources.
resource "linode_sshkey" "foo" { label = "foo" ssh_key = "${chomp(file("~/.ssh/id_rsa.pub"))}" } resource "linode_instance" "foo" { image = "linode/ubuntu18.04" label = "foo" region = "us-east" type = "g6-nanode-1" authorized_keys = ["${linode_sshkey.foo.ssh_key}"] root_pass = "..." }
Adds support for managing Linode SSH Key resources.