Type Constraints - Map
We will learn how to use Map type constraints in your Terraform project.
Map
A map is a set of values indexed by key name. You can give a map a type, which will be the type of the values.
Project example
Consider the following code:
In this project, we are creating a map of type number. ...