In regards to Terraform state file, select all the statements below which are correct: (select four)
Terraform state can contain sensitive data, depending on the resources in use and your definition of 'sensitive.' The state contains resource IDs and all resource attributes. For resources such as databases, this may contain initial passwords.
When using local state, state is stored in plain-text JSON files.
If you manage any sensitive data with Terraform (like database passwords, user passwords, or private keys), treat the state itself as sensitive data.
Storing Terraform state remotely can provide better security. As of Terraform 0.9, Terraform does not persist state to the local disk when remote state is in use, and some backends can be configured to encrypt the state data at rest.
Currently there are no comments in this discussion, be the first to comment!