mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-18 04:19:43 +00:00
6 lines
129 B
HCL
6 lines
129 B
HCL
resource "openstack_compute_keypair_v2" "ssh_deploy_key" {
|
|
name = var.prefix
|
|
public_key = file("~/.ssh/id_rsa.pub")
|
|
}
|
|
|