12 lines
300 B
HCL
12 lines
300 B
HCL
provider "multipass" {}
|
|
|
|
resource "multipass_instance" "this" {
|
|
for_each = var.vms
|
|
name = each.key
|
|
cpus = each.value.cpus
|
|
memory = each.value.memory
|
|
disk = each.value.disk
|
|
image = each.value.image
|
|
cloudinit_file = "cloud-init.yml"
|
|
}
|