This module provides an opinionated wrapper around creating and managing secret values in GCP Secret Manager with Terraform 0.14 and newer.
NOTE: The random sub-module has been removed from v2.x releases; use Terraform's random provider or other method to generate a suitable secret password. See Random provider for an example.
Given a project identifier, the module will create a new secret, or update an
existing secret version, so that it contains the value provided. An optional list
of IAM user, group, or service account identifiers can be provided and each of
the identifiers will be granted roles/secretmanager.secretAccessor
on the secret.
module "secret" {
source = "memes/secret-manager/google"
version = "2.2.1"
project_id = "my-project-id"
id = "my-secret"
secret = "T0pS3cret!"
accessors = ["group:[email protected]"]
}
There are a set of examples that help show the various options available:
- Simple - minimal use-case that creates a secret with a value.
- Empty Secret - use-case that creates a secret but does not assign a value; e.g. the module does not a secret version.
- Random provider - demonstrates using the Terraform Random provider to create a random secret value.
- Accessors - use-case to create a secret and with read-only role granted to a set of accounts.
- User-managed replication - override Google Secret Manager automatic replication with a fixed set of regions.
- User-managed replication with Cloud KMS - force Google Secret Manager to replication to a fixed set of regions and use specified Cloud KMS keys for the encryption.
- All Options - use-case with user managed replication options, assigned roles, etc. The kitchen sink!
- Automatic replication with Cloud KMS - New in v2.2.0 - use Google Secret Manager automatic replication of secret, but encrypt with the specified Cloud KMS key.
- Pub/Sub integration - New in v2.2.0 - create a Secret with integration to an existing Cloud Pub/Sub Topic; Secret Manager will inform listeners of rotation and life-cycle events.
- Time-to-live - New in v2.2.0 - create a Secret with a fixed TTL; after this time the Secret will be automatically destroyed.
Name | Version |
---|---|
terraform | >= 0.14.5 |
>= 4.83 |
No modules.
Name | Type |
---|---|
google_secret_manager_secret.secret | resource |
google_secret_manager_secret_iam_member.secret | resource |
google_secret_manager_secret_version.secret | resource |
Name | Description | Type | Default | Required |
---|---|---|---|---|
id | The secret identifier to create; this value must be unique within the project. | string |
n/a | yes |
project_id | The GCP project identifier where the secret will be created. | string |
n/a | yes |
secret | The secret payload to store in Secret Manager; if blank or null a versioned secret value will NOT be created and must be populated outside of this module. Binary values should be base64 encoded before use. |
string |
n/a | yes |
accessors | An optional list of IAM account identifiers that will be granted accessor (read-only) permission to the secret. |
list(string) |
[] |
no |
annotations | An optional map of annotation key:value pairs to assign to the secret resources. Default is an empty map. |
map(string) |
{} |
no |
auto_replication_kms_key_name | An optional Cloud KMS key name to use with Google managed replication. If the value is empty (default), then a Google managed key will be used for encryption of the secret. See replication variable for examples. |
string |
"" |
no |
labels | An optional map of label key:value pairs to assign to the secret resources. Default is an empty map. |
map(string) |
{} |
no |
replication | An optional map of replication configurations for the secret. If the map is empty (default), then automatic replication will be used for the secret. If the map is not empty, replication will be configured for each key (region) and, optionally, will use the provided Cloud KMS keys. NOTE: If Cloud KMS keys are used, a Cloud KMS key must be provided for every region key. E.g. to use automatic replication policy with Google managed keys(default) replication = {} E.g. to use automatic replication policy with specific Cloud KMS key, auto_replication_kms_key_name = "my-global-key-name" replication = {} E.g. to force secrets to be replicated only in us-east1 and us-west1 regions, with Google managed encryption keys replication = { "us-east1" = null "us-west1" = null } E.g. to force secrets to be replicated only in us-east1 and us-west1 regions, but use Cloud KMS keys from each region. replication = { "us-east1" = { kms_key_name = "my-east-key-name" } "us-west1" = { kms_key_name = "my-west-key-name" } } |
map(object({ |
{} |
no |
topics | An optional list of Cloud Pub/Sub topics that will receive control-plane events for the secret. Default is an empty list. |
list(string) |
[] |
no |
ttl_secs | An optional time-to-live value expressed as a number of seconds; the secret will be automatically deleted after this duration. If the value is null (default), there will be no time-to-live applied to the secret. E.g. to automatically delete the secret after 5 minutes, set ttl_secs = 600 |
number |
null |
no |
Name | Description |
---|---|
expiration_timestamp | The RFC3339 formatted timestamp when the secret will automatically be removed from Secret Manager, if applicable. |
id | The fully-qualified id of the Secret Manager key that contains the secret. |
secret_id | The project-local id Secret Manager key that contains the secret. Should match the input id . |