This optional module is used to assign kms_key_ring roles
module "kms_key_ring-iam-bindings" {
source = "terraform-google-modules/iam/google//modules/kms_key_rings_iam"
kms_key_rings = ["my-kms_key_ring_one", "my-kms_key_ring_two"]
mode = "additive"
bindings = {
"roles/cloudkms.cryptoKeyEncrypter" = [
"user:my-user@my-org.com",
"group:my-group@my-org.com",
]
"roles/cloudkms.cryptoKeyDecrypter" = [
"user:my-user@my-org.com",
"group:my-group@my-org.com",
]
}
conditional_bindings = [
{
role = "roles/cloudkms.admin"
title = "expires_after_2019_12_31"
description = "Expiring at midnight of 2019-12-31"
expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")"
members = ["user:my-user@my-org.com"]
}
]
}
Name | Description | Type | Default | Required |
---|---|---|---|---|
bindings | Map of role (key) and list of members (value) to add the IAM policies/bindings | map(list(string)) | <map> |
no |
conditional_bindings | List of maps of role and respective conditions, and the members to add the IAM policies/bindings | object | <list> |
no |
kms_key_rings | KMS Key Rings list to add the IAM policies/bindings | list(string) | <list> |
no |
mode | Mode for adding the IAM policies/bindings, additive and authoritative | string | "additive" |
no |
Name | Description |
---|---|
kms_key_rings | KMS key rings which received bindings. |
members | Members which were bound to the KMS key rings. |
roles | Roles which were assigned to members. |