Question 86
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 87
Terraform provisioners that require authentication can use the ______ block.
Question 88
Which of the following value will be accepted for my_var?
1. variable "my_var"
2. {
3. type = string
4. }
Question 89
Only the user that generated a plan may apply it.
Question 90
What command should you run to display all workspaces for the current configuration?
