Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 765 Bytes

File metadata and controls

28 lines (23 loc) · 765 Bytes

User Managed Replication

This example shows how to specify an explicit set of locations to use for secret replication.

Example at a glance

Item Managed by Terraform Description
Access Control Not managed by example; permissions to read the secret must be specified externally.
Replication User specified locations will be used for replication.
Secret Value User specified.
Pub/Sub Notifications Not managed by example.
TTL Not managed by example.

Example terraform.tfvars

# Example TF vars file
project_id = "my-project-id"
id = "my-secret-id"
secret = "T0pS3cretP@ssword!"
replication = {
    "us-east1" = null
    "us-west1" = null
}