Question 21

Refer below code where pessimistic constraint operator has been used to specify a version of a provider.
terraform { required_providers { aws = "~> 1.1.0" }}
Which of the following options are valid provider versions that satisfy the above constraint. (select two)
  • Question 22

    The Terraform CLI will print output values from a child module after running terraform apply.
  • Question 23

    What command does Terraform require the first time you run it within a configuration directory?
  • Question 24

    What allows you to conveniently switch between multiple instances of a single configuration within its single
    backend?
  • Question 25

    You are writing a child Terraform module which provisions an AWS instance. You want to make use of the IP
    address returned in the root configuration. You name the instance resource "main".
    Which of these is the correct way to define the output value using HCL2?