How to merge multiple maps into a single map in terraform?

You can use terraform merge() function to combine multiple maps into a single map. merge() takes an arbitrary number of maps or objects, and returns a single map or object that contains a merged set of elements from all arguments.

Syntax: merge(map1, map2, ..)

Example: