Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 242 Bytes

File metadata and controls

10 lines (8 loc) · 242 Bytes

Load SSH Public Key From File

This is a small example that shows how to load a SSH public key file from disk with file():

resource "gridscale_sshkey" "demo" {
  name   = "demo"
  sshkey = file("/home/john/.ssh/id_rsa.pub")
}