Question 16

Your manager has instructed you to start using terraform for your day-to-day operations, but your security team is concerned about the terraform state files. They have heard it contains confidential information, and are worried that it will not be securely protected. What should be your response to the security team in this regard?
  • Question 17

    You want terraform plan and terraform apply to be executed in Terraform Cloud's run environment but the output is to be streamed locally. Which one of the below you will choose?
  • Question 18

    You have created a custom variable definition file testing.tfvars. How will you use it for provisioning infrastructure?
  • Question 19

    You want to use different AMI images for different regions and for the purpose you have defined following code block.
    1. variable "images"
    2. {
    3. type = "map"
    4.
    5. default = {
    6. us-east-1 = "image-1234"
    7. us-west-2 = "image-4567"
    8. us-west-1 = "image-4589"
    9. }
    10. }
    What of the following approaches needs to be followed in order to select image-4589?
  • Question 20

    Which one of the following command will rewrite Terraform configuration files to a canonical format and style.