mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-19 21:09:27 +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.
14 lines
295 B
HCL
14 lines
295 B
HCL
provider "openstack" {
|
|
user_name = "${var.user}"
|
|
tenant_name = "${var.tenant}"
|
|
domain_name = "${var.domain}"
|
|
password = "${var.password}"
|
|
auth_url = "${var.auth_url}"
|
|
}
|
|
|
|
variable "user" {}
|
|
variable "tenant" {}
|
|
variable "domain" {}
|
|
variable "password" {}
|
|
variable "auth_url" {}
|