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