An issue I ran in to recently was that I needed to assign multiple lists to the ip_rules block of an Azure Key Vault in Terraform. Doing so was easy enough using Terraform’s concat function. Initially, the use case was simple… combine three lists that were stored as variables. ip_rules = “${concat(var.list1, var.list2, var.list3)}” I …
Continue reading “Terraform – Concat + formatlist multiple lists”