Try to fix variable map type issue

This commit is contained in:
Philippe Caseiro 2021-03-22 21:45:46 +01:00
parent 149b5f526e
commit c6c682756e
1 changed files with 6 additions and 6 deletions

View File

@ -3,9 +3,9 @@ virtual_machines = {
fqdn = "amon.fabrica.local",
domain = "fabrica.local",
create_dns_a_record = "no",
cpu = 0.4,
vcpu = 4,
memory = 4096,
cpu = "0.4",
vcpu = "4",
memory = "4096",
network_interfaces = [
{ network_name = "internet", ip = "192.168.1.3" },
{ network_name = "office", ip = "192.168.10.254" }
@ -25,9 +25,9 @@ virtual_machines = {
fqdn = "scribe.fabrica.local",
domain = "fabrica.local",
create_dns_a_record = "no",
cpu = 0.4,
vcpu = 4,
memory = 4096,
cpu = "0.4",
vcpu = "4",
memory = "4096",
network_interfaces = [
{ network_name = "office", ip = "192.168.10.200" }
],