TA-002-P Exam Question 81

Refer to the below code where developer is outputting the value of the database password but has used sensitive parameter to hide the output value in the CLI.
output "db_password" { value = aws_db_instance.db.password description = "The password for logging in to the database." sensitive = true} Since sensitive is set to true, the value associated with db password will not be present in state file as plain-text?
  • TA-002-P Exam Question 82

    In contrast to Terraform Open Source, when working with Terraform Enterprise and Cloud Workspaces, conceptually you could think about them as completely separate working directories.
  • TA-002-P Exam Question 83

    Which of these options is the most secure place to store secrets foe connecting to a Terraform remote backend?
  • TA-002-P Exam Question 84

    Which of the below backends support state locking?
  • TA-002-P Exam Question 85

    You should store secret data in the same version control repository as your Terraform configuration.