Question 56

Which of the following variable definition files will terraform load automatically?
  • Question 57

    You have multiple team members collaborating on infrastructure as code (IaC) using Terraform, and want to apply formatting standards for readability.
    How can you format Terraform HCL (HashiCorp Configuration Language) code according to standard Terraform style convention?
  • Question 58

    What is the provider for this fictitious resource?
  • Question 59

    You can migrate the Terraform backend but only if there are no resources currently being managed.
  • Question 60

    Valarie has created a database instance in AWS and for ease of use is outputting the value of the database password with the following code. Valarie wants to hide the output value in the CLI after terraform apply that's why she has used sensitive parameter.
    1. output "db_password" {
    2. value = local.db_password
    3. sensitive = true
    4. }
    Since sensitive is set to true, will the value associated with db password be available in plain-text in the state file for everyone to read?