We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The resource google_storage_bucket_iam_member supports conditions. However, these are not exposed in this module at the moment.
google_storage_bucket_iam_member
https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/storage_bucket_iam
resource "google_storage_bucket_iam_member" "members" { for_each = { for m in var.iam_members : "${m.role} ${m.member}" => m } bucket = google_storage_bucket.bucket.name role = each.value.role member = each.value.member dynamic "condition" { for_each = each.value.condition title = condition.value.title description = condition.value.description expression = condition.value.expression } }
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
TL;DR
The resource
google_storage_bucket_iam_member
supports conditions. However, these are not exposed in this module at the moment.Terraform Resources
https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/storage_bucket_iam
Detailed design
Additional information
No response
The text was updated successfully, but these errors were encountered: