tf-ansible-workflow

Terraform/Ansible Workflow for Libvirt
git clone https://git.in0rdr.ch/tf-ansible-workflow.git
Log | Files | Refs | Pull requests |Archive

commit e045a27ee47833d32095d905eeb3d5be14946d17
parent a052b016b5c3a163889ca53b8e5d0ddc6635cb33
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Wed, 28 Jul 2021 08:14:43 +0200

empty node list default

Diffstat:
Mlibvirt/terraform/variables.tf | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libvirt/terraform/variables.tf b/libvirt/terraform/variables.tf @@ -5,12 +5,12 @@ variable "project" { variable "hosts" { type = list - default = ["node0", "node1"] + default = [] } variable "type2_hosts" { type = list - default = ["node2", "node3"] + default = [] } variable "vcpu" {