ansible-debops-infrastructure

DebOps and Ansible scripts to manage my infrastructure
git clone git://git.erethon.com/ansible-debops-infrastructure
Log | Files | Refs

commit b6381c5f5bb9f965f0990198fe2eedea6121e2bc
parent 2498bf389129b62db404591ccef349eb27616b91
Author: Dionysis Grigoropoulos <dgrig@erethon.com>
Date:   Mon, 30 Nov 2020 00:33:10 +0200

infrastructure: Use the latest libvirt_network

Diffstat:
terraform/infrastructure/lenny/main.tf | 2+-
terraform/infrastructure/oricono/main.tf | 4++--
terraform/infrastructure/production/variables.tf | 2+-
3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/terraform/infrastructure/lenny/main.tf b/terraform/infrastructure/lenny/main.tf @@ -7,7 +7,7 @@ module "lenny_network" { network_bridge_interface = "virbr1" network_name = "lenny_network" - network_cidr = "192.168.134.0/24" + network_cidr = ["192.168.134.0/24"] network_dns_enabled = false } diff --git a/terraform/infrastructure/oricono/main.tf b/terraform/infrastructure/oricono/main.tf @@ -7,7 +7,7 @@ module "ori_network" { network_bridge_interface = "virbr1" network_name = "ori_network" - network_cidr = "192.168.144.0/24" + network_cidr = ["192.168.144.0/24"] network_dns_enabled = false } @@ -16,7 +16,7 @@ module "hacky_network" { network_bridge_interface = "virbr2" network_name = "hacky_network" - network_cidr = "192.168.145.0/24" + network_cidr = ["192.168.145.0/24"] network_dns_enabled = false } diff --git a/terraform/infrastructure/production/variables.tf b/terraform/infrastructure/production/variables.tf @@ -10,5 +10,5 @@ variable "libvirt_storage_pool" { variable "libvirt_cidr" { description = "Network CIDR to use for VMs" - default = "192.168.199.0/24" + default = ["192.168.199.0/24"] }