Question 16
You cannot publish your own modules on the Terraform Registry.
Question 17
What allows you to conveniently switch between multiple instances of a single configuration within its single backend?
Question 18
During a terraform plan, a resource is successfully created but eventually fails during provisioning. What happens to the resource?
Question 19
resource "aws_s3_bucket" "example" { bucket = "my-test-s3-terraform-bucket" ...} resource "aws_iam_role"
"test_role" { name = "test_role" ...}
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 20
If a module declares a variable with a default, that variable must also be defined within the module.
