diff --git a/modules/kms/README.md b/modules/kms/README.md
index 1d08fce83..e11dd1af9 100644
--- a/modules/kms/README.md
+++ b/modules/kms/README.md
@@ -120,14 +120,14 @@ module "kms" {
| name | description | type | required | default |
|---|---|:---:|:---:|:---:|
| [keyring](variables.tf#L64) | Keyring attributes. | object({…}) | ✓ | |
-| [project_id](variables.tf#L113) | Project id where the keyring will be created. | string | ✓ | |
+| [project_id](variables.tf#L114) | Project id where the keyring will be created. | string | ✓ | |
| [iam](variables.tf#L17) | Keyring IAM bindings in {ROLE => [MEMBERS]} format. | map(list(string)) | | {} |
| [iam_bindings](variables.tf#L24) | Authoritative IAM bindings in {KEY => {role = ROLE, members = [], condition = {}}}. Keys are arbitrary. | map(object({…})) | | {} |
| [iam_bindings_additive](variables.tf#L39) | Keyring individual additive IAM bindings. Keys are arbitrary. | map(object({…})) | | {} |
| [import_job](variables.tf#L54) | Keyring import job attributes. | object({…}) | | null |
| [keyring_create](variables.tf#L72) | Set to false to manage keys and IAM bindings in an existing keyring. | bool | | true |
-| [keys](variables.tf#L78) | Key names and base attributes. Set attributes to null if not needed. | map(object({…})) | | {} |
-| [tag_bindings](variables.tf#L118) | Tag bindings for this keyring, in key => tag value id format. | map(string) | | {} |
+| [keys](variables.tf#L78) | Key names and base attributes. Set attributes to null if not needed. | map(object({…})) | | {} |
+| [tag_bindings](variables.tf#L119) | Tag bindings for this keyring, in key => tag value id format. | map(string) | | {} |
## Outputs
diff --git a/modules/kms/variables.tf b/modules/kms/variables.tf
index c32915469..52de83890 100644
--- a/modules/kms/variables.tf
+++ b/modules/kms/variables.tf
@@ -90,6 +90,7 @@ variable "keys" {
iam = optional(map(list(string)), {})
iam_bindings = optional(map(object({
members = list(string)
+ role = string
condition = optional(object({
expression = string
title = string