terraform-provider-google/website/docs/r/google_kms_key_ring_iam_binding.html.markdown
James Turley 6f4a7926ba IAM resources for KMS KeyRIng and CryptoKey (#781)
* Add IAM bindings and member resources for KMS KeyRings

* Add IAM bindings and member resources for KMS CryptoKeys

* Docs for key ring and crypto key IAM resources

* Exctract KMS policy conversions to helper functions

* Split iam_binding and iam_member tests for KMS

* Docs for kms IAM member resources

* Run KMS IAM tests in own project
2017-11-23 11:26:43 -08:00

1.2 KiB

layout page_title sidebar_current description
google Google: google_kms_key_ring_iam_binding docs-google-kms-key-ring-iam-binding Allows management of a single binding with an IAM policy for a Google Cloud KMS key ring

google_kms_key_ring_iam_binding

Allows creation and management of a single binding within IAM policy for an existing Google Cloud KMS key ring.

Example Usage

resource "google_kms_key_ring_binding" "key_ring" {
  key_ring_id = "your-key-ring-id"
  role        = "roles/editor"

  members = [
    "user:jane@example.com",
  ]
}

Argument Reference

The following arguments are supported:

  • members - (Required) A list of users that the role should apply to.

  • role - (Required) The role that should be applied. Only one google_kms_key_ring_iam_binding can be used per role.

  • key_ring_id - (Required) The key ring ID, in the form {project_id}/{location_name}/{key_ring_name} or {location_name}/{key_ring_name}. In the second form, the provider's project setting will be used as a fallback.

Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported:

  • etag - (Computed) The etag of the key ring's IAM policy.