Bring back firewall logging

This commit is contained in:
Julio Castillo
2020-10-07 10:30:26 +02:00
parent 09301cf7bd
commit 0b34b9fa71
3 changed files with 20 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ locals {
"${pair.0}/${pair.1}" => { role = pair.0, name = pair.1 }
}
names = (
var.use_instance_template ? { "${var.name}" = 0 } : {
var.use_instance_template ? { (var.name) = 0 } : {
for i in range(0, var.instance_count) : "${var.name}-${i + 1}" => i
}
)