Question 111

What features does the hosted service Terraform Cloud provide? (Choose two.)
  • Question 112

    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 113

    terraform apply is failing with the following error. What next step should you take to determine the root cause
    of the problem?
    Error loading state: AccessDenied: Access Denied status code: 403, request id: 288766CE5CCA24A0, host id:
    FOOBAR
  • Question 114

    Your organization has moved to AWS and has manually deployed infrastructure using the console. Recently, a
    decision has been made to standardize on Terraform for all deployments moving forward.
    What can you do to ensure that all existing is managed by Terraform moving forward without interruption to
    existing services?
  • Question 115

    If writing Terraform code that adheres to the Terraform style conventions, how would you properly indent
    each nesting level compared to the one above it?