Question 101
Which of the following is allowed as a Terraform variable name?
Question 102
One remote backend configuration always maps to a single remote workspace.
Question 103
Given the Terraform configuration below, in which order will the resources be created?
1. resource "aws_instance" "web_server"
2. {
3. ami = "ami-b374d5a5"
4. instance_type = "t2.micro"
5. }
6. resource "aws_eip" "web_server_ip"
7. {
8. vpc = true instance = aws_instance.web_server.id
9. }
Question 104
Why might a user opt to include the following snippet in their configuration file?
Question 105
How does Terraform handle working with so many providers?
