Exam Terraform Associate All QuestionsBrowse all questions from this exam
Question 276

It is best practice to store secret data in the same version control repository as your Terraform configuration.

    Correct Answer: B

    It is not best practice to store secret data in the same version control repository as your Terraform configuration. Storing secrets in version control can lead to security vulnerabilities, as anyone with access to the repository would potentially have access to the sensitive data. Instead, secrets should be managed using a secure secrets management tool specifically designed for this purpose.

Discussion
Pete987Option: B

B. False Never save secret data in version control

heelocoOption: B

agree Pete987