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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What data types are present in Terraform?

A

string, number, bool, list, set, map, null

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does the list data type do?

A

It allows us to store a collection of values for a single variable/argument

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you enter values into a list variable at the CLI screen?

A

[var1, var2,…]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you set a list that are only of numbers?

A

type = list(number)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly