A Terraform module to create a Google Secret Manager on Google Cloud Services (GCP)
This module supports Terraform version 1 and is compatible with the Terraform Google Provider version 5.
This module is part of our Infrastructure as Code (IaC) framework that enables our users and customers to easily deploy and manage reusable, secure, and production-grade cloud infrastructure.
- Module Features
- Getting Started
- Module Argument Reference
- Module Outputs
- External Documentation
- Module Versioning
- About Mineiros
- Reporting Issues
- Contributing
- Makefile Targets
- License
This module implements the following terraform resources:
google_secret_manager_secret
and supports additional features of the following modules:
Most basic usage just setting required arguments:
module "terraform-google-secret-manager" {
source = "github.com/mineiros-io/terraform-google-secret-manager.git?ref=v0.3.0"
secret_id = "secret"
}
See variables.tf and examples/ for details and use-cases.
-
secret_id
: (Requiredstring
)This must be unique within the project.
-
replicas
: (Optionallist(replica)
)A list of replicas for the secret will be replicated in according to the location set in the location property. If empty The Secret will automatically be replicated without any restrictions.
Default is
[]
.Example:
replicas = [{ location = "us-central1" }]
Each
replica
object in the list accepts the following attributes:-
location
: (Requiredstring
)The canonical IDs of the location to replicate data. For example:
us-east1
. -
customer_managed_encryption
: (Optionalobject(customer_managed_encryption)
)Customer Managed Encryption for the secret.
Example:
customer_managed_encryption = { kms_key_name = "mykey" }
The
customer_managed_encryption
object accepts the following attributes:-
kms_key_name
: (Requiredstring
)Describes the Cloud KMS encryption key that will be used to protect destination secret.
-
-
-
labels
: (Optionalmap(string)
)The labels assigned to this Secret. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression:
[\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62}
Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression:[\p{Ll}\p{Lo}\p{N}-]{0,63}
No more than 64 labels can be assigned to a given resource. An object containing a list ofkey: value
pairs.Default is
{}
.Example:
labels = { "app": "web", "env": "prod" }
-
expire_time
: (Optionalstring
)Timestamp in UTC when the Secret is scheduled to expire. This is always provided on output, regardless of what was sent on input. A timestamp in RFC3339 UTC
Zulu
format, with nanosecond resolution and up to nine fractional digits. Examples:2014-10-02T15:01:23Z
and2014-10-02T15:01:23.045123456Z
. -
ttl
: (Optionalstring
)The TTL for the Secret. A duration in seconds with up to nine fractional digits, terminated by
s
. Example:3.5s
. -
topics
: (Optionalset(string)
)A list of up to 10 Pub/Sub topics to which messages are published when control plane operations are called on the secret or its versions. Structure is documented below. If you set topics, you will need to set rotation too.
-
rotation
: (Optionalobject(rotation)
)The rotation time and period for a Secret. At
next_rotation_time
, Secret Manager will send a Pub/Sub notification to the topics configured on the Secret.topics
must be set to configure rotation.Example:
rotation = { next_rotation_time = "2022-10-02T15:01:23.045123456Z" rotation_period = "3600s" }
The
rotation
object accepts the following attributes:-
next_rotation_time
: (Optionalstring
)Timestamp in UTC at which the Secret is scheduled to rotate. A timestamp in RFC3339 UTC
Zulu
format, with nanosecond resolution and up to nine fractional digits. Examples:2014-10-02T15:01:23Z
and2014-10-02T15:01:23.045123456Z
. -
rotation_period
: (Optionalstring
)The Duration between rotation notifications. Must be in seconds and at least
3600s
(1h) and at most3153600000s
(100 years). If rotationPeriod is set,next_rotation_time
must be set.next_rotation_time
will be advanced by this period when the service automatically sends rotation notifications.
-
-
project
: (Optionalstring
)The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
-
iam
: (Optionallist(iam)
)A list of IAM access.
Default is
[]
.Example:
iam = [{ role = "roles/secretmanager.admin" members = ["user:[email protected]"] authoritative = false }]
Each
iam
object in the list accepts the following attributes:-
members
: (Optionalset(string)
)Identities that will be granted the privilege in role. Each entry can have one of the following values:
allUsers
: A special identifier that represents anyone who is on the internet; with or without a Google account.allAuthenticatedUsers
: A special identifier that represents anyone who is authenticated with a Google account or a service account.user:{emailid}
: An email address that represents a specific Google account. For example, [email protected] or [email protected].serviceAccount:{emailid}
: An email address that represents a service account. For example, [email protected].group:{emailid}
: An email address that represents a Google group. For example, [email protected].domain:{domain}
: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.projectOwner:projectid
: Owners of the given project. For example,projectOwner:my-example-project
projectEditor:projectid
: Editors of the given project. For example,projectEditor:my-example-project
projectViewer:projectid
: Viewers of the given project. For example,projectViewer:my-example-project
computed:{identifier}
: An existing key fromvar.computed_members_map
.
Default is
[]
. -
role
: (Optionalstring
)The role that should be applied. Note that custom roles must be of the format
[projects|organizations]/{parent-name}/roles/{role-name}
. -
authoritative
: (Optionalbool
)Whether to exclusively set (authoritative mode) or add (non-authoritative/additive mode) members to the role.
Default is
true
.
-
-
policy_bindings
: (Optionallist(policy_bindings)
)A list of IAM policy bindings.
Example:
policy_bindings = [{ role = "roles/secretmanager.admin" members = ["user:[email protected]"] condition = { title = "expires_after_2021_12_31" description = "Expiring at midnight of 2021-12-31" expression = "request.time < timestamp(\"2022-01-01T00:00:00Z\")" } }]
Each
policy_bindings
object in the list accepts the following attributes:-
role
: (Requiredstring
)The role that should be applied.
-
members
: (Optionalset(string)
)Identities that will be granted the privilege in
role
.Default is
var.members
. -
condition
: (Optionalobject(condition)
)An IAM Condition for a given binding.
Example:
condition = { expression = "request.time < timestamp(\"2022-01-01T00:00:00Z\")" title = "expires_after_2021_12_31" }
The
condition
object accepts the following attributes:-
expression
: (Requiredstring
)Textual representation of an expression in Common Expression Language syntax.
-
title
: (Requiredstring
)A title for the expression, i.e. a short string describing its purpose.
-
description
: (Optionalstring
)An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
-
-
-
computed_members_map
: (Optionalmap(string)
)A map of members to replace in
members
of various IAM settings to handle terraform computed values.Default is
{}
.
-
module_enabled
: (Optionalbool
)Specifies whether resources in the module will be created.
Default is
true
. -
module_depends_on
: (Optionallist(dependency)
)A list of dependencies. Any object can be assigned to this list to define a hidden external dependency.
Example:
module_depends_on = [ google_network.network ]
The following attributes are exported in the outputs of the module:
-
secret
: (object(secret)
)All
google_secret_manager_secret
resource attributes. -
iam
: (list(iam)
)All attributes of the created policy_bindings mineiros-io/secret-manager-iam/google module when using iam bindings or members.
-
policy_binding
: (list(iam)
)All attributes of the created policy_bindings mineiros-io/secret-manager-iam/google module when using policy bindings.
- Secret Manager: https://cloud.google.com/secret-manager
- https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/secret_manager_secret
This Module follows the principles of Semantic Versioning (SemVer).
Given a version number MAJOR.MINOR.PATCH
, we increment the:
MAJOR
version when we make incompatible changes,MINOR
version when we add functionality in a backwards compatible manner, andPATCH
version when we make backwards compatible bug fixes.
- Backwards compatibility in versions
0.0.z
is not guaranteed whenz
is increased. (Initial development) - Backwards compatibility in versions
0.y.z
is not guaranteed wheny
is increased. (Pre-release)
Mineiros is a remote-first company headquartered in Berlin, Germany that solves development, automation and security challenges in cloud infrastructure.
Our vision is to massively reduce time and overhead for teams to manage and deploy production-grade and secure cloud infrastructure.
We offer commercial support for all of our modules and encourage you to reach out if you have any questions or need help. Feel free to email us at [email protected] or join our Community Slack channel.
We use GitHub Issues to track community reported issues and missing features.
Contributions are always encouraged and welcome! For the process of accepting changes, we use Pull Requests. If you'd like more information, please see our Contribution Guidelines.
This repository comes with a handy Makefile.
Run make help
to see details on each available target.
This module is licensed under the Apache License Version 2.0, January 2004. Please see LICENSE for full details.
Copyright © 2020-2022 Mineiros GmbH