I am trying to configure terraform module to import a file from local. This will avoid secret value in main or variable .tf.
Below is my code:
Store actual secret as the latest version.
resource “google_secret_manager_secret_version” “secret” {
secret = google_secret_manager_secret.secret.id
shared_credentials_file = “\git\credentials”
}
error : Error: Invalid escape sequence
│
│ On main.tf line 17: The symbol “g” is not a valid escape sequence selector.
╵