How can you restrict the value of a variable to a data type?
Creating a variable and assigning a specific data type
What data types are present in Terraform?
string, number, bool, list, set, map, null
What does the list data type do?
It allows us to store a collection of values for a single variable/argument
How do you enter values into a list variable at the CLI screen?
[var1, var2,…]
How do you set a list that are only of numbers?
type = list(number)