notes

Loading Terraform into CSV

July 21, 2022 #terraform #csv

Did you know you can load CSV files into Terraform and loop through the results.

locals {
 storage list = csvdecode(file"./storage.csv")
}
resource "azurerm_storage_account" "storage_name" {
 for_each = { for i in local.storagelist : i.name => I }

name = each.value.name
.....
}