fix dynamic provisioner

This commit is contained in:
Pim Kunis 2023-04-09 11:34:30 +02:00
parent d40da1a9e8
commit 013fc774c0
2 changed files with 3 additions and 6 deletions

View file

@ -97,11 +97,8 @@ resource "libvirt_domain" "debian" {
cloudinit = libvirt_cloudinit_disk.debian.id
dynamic "local-exec" {
for_each = var.ansible_command != "" ? [1] : []
content {
command = var.ansible_command
}
provisioner "local-exec" {
command = var.ansible_command
}
lifecycle {

View file

@ -67,5 +67,5 @@ variable "fixed_address" {
variable "ansible_command" {
type = string
default = ""
default = "true"
}