Files
2021-11-17 20:13:34 +01:00

6 lines
129 B
HCL

resource "openstack_compute_keypair_v2" "ssh_deploy_key" {
name = var.prefix
public_key = file("~/.ssh/id_rsa.pub")
}