It is best practice to store secret data in the same version control repository as your Terraform configuration.
It is best practice to store secret data in the same version control repository as your Terraform configuration.
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.
B. False Never save secret data in version control
agree Pete987