mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-18 20:39:17 +00:00
This allows to manage groups of VMs across multiple infrastructure providers. It also adds support to create groups of VMs on OpenStack. WARNING: the syntax of workshopctl has changed slightly. Check READMEs for details.
6 lines
139 B
HCL
6 lines
139 B
HCL
resource "openstack_compute_keypair_v2" "ssh_deploy_key" {
|
|
name = "${var.prefix}"
|
|
public_key = "${file("~/.ssh/id_rsa.pub")}"
|
|
}
|
|
|