Pim Kunis
111bf68a0a
move docker swarm ansible to this repo move thecloud ansible to this repo support data disks in terraform
13 lines
194 B
HCL
13 lines
194 B
HCL
terraform {
|
|
required_providers {
|
|
libvirt = {
|
|
source = "dmacvicar/libvirt"
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "libvirt_pool" "data" {
|
|
name = "data"
|
|
type = "dir"
|
|
path = "/mnt/data/volumes"
|
|
}
|