Terraform Function - Part 1 [Collection functions] - with examples
Let's look at some practical examples using these Terraform functions:
1. concat()
Scenario: You have two lists of AWS availability zones, and you want to create a single list combining them.
Terraform Code:
locals {
azs_region1 = ["us-east-1a", "u...
anirban28.hashnode.dev5 min read