Get the value from a Secret Manager secret version. This is similar to the google_secret_manager_secret_version datasource, but it only requires the Secret Manager Secret Accessor role. For more information see the official documentation and API.
data "google_secret_manager_secret_version_access" "basic" {
secret = "my-secret"
}
The following arguments are supported:
project
- (Optional) The project to get the secret version for. If it
is not provided, the provider project is used.
secret
- (Required) The secret to get the secret version for.
version
- (Optional) The version of the secret to get. If it
is not provided, the latest version is retrieved.
The following attributes are exported:
secret_data
- The secret data. No larger than 64KiB.
name
- The resource name of the SecretVersion. Format:
projects/{{project}}/secrets/{{secret_id}}/versions/{{version}}