From 05711c4bbd393af232e0fdbf65ffb4fa59cd5ecb Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Tue, 7 Feb 2023 14:27:19 +0100 Subject: [PATCH] feat(nebula): adding mac address definition for nics --- README.md | 8 +++++++- modules/nebula/main.tf | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8598339..c4f4011 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ # terracadoles -Cadoles Terraform modules \ No newline at end of file +Cadoles Terraform modules + +## Modules + +* virtualMachine +* dns +* nebula \ No newline at end of file diff --git a/modules/nebula/main.tf b/modules/nebula/main.tf index 188c81a..e7342eb 100644 --- a/modules/nebula/main.tf +++ b/modules/nebula/main.tf @@ -100,6 +100,7 @@ resource "opennebula_template" "vm_template" { content { network_id = nic.value.network_id model = "virtio" + mac = nic.value.mac ip = nic.value.ip } }