Question 171
In regards to Terraform state file, select all the statements below which are correct?
Question 172
You have already set TF_LOG = DEBUG to enable debug log. Now you want to always write the log to the directory you're currently running terraform from. what should you do to achieve this.
Question 173
1. resource "aws_s3_bucket" "example" {
2. bucket = "my-test-s3-terraform-bucket"
3. ...} resource "aws_iam_role" "test_role" {
4. name = "test_role"
5. ...}
Due to the way that the application code is written, the s3 bucket must be created before the test role is created, otherwise there will be a problem. How can you ensure that?
Question 174
After executing a terraform apply, you notice that a resource has a tilde (~) next to it. What does this infer?
Question 175
Which two steps are required to provision new infrastructure in the Terraform workflow? (Choose two.)
