Introduce iam_by_principals_conditional (#3649)
* Introduce iam_by_principals_conditional * Add iam_by_principals_conditional to project factory * Update IAM ADR * Update project factory readme * Sync FAST schemas * Update organization schema * Add resman tests for iam_by_principals_conditional * Update PF project-defaults.tf * Update copyright
This commit is contained in:
@@ -5,6 +5,7 @@ This module allows the creation and management of folders, including support for
|
||||
<!-- BEGIN TOC -->
|
||||
- [Basic example with IAM bindings](#basic-example-with-iam-bindings)
|
||||
- [IAM](#iam)
|
||||
- [Conditional IAM by Principals](#conditional-iam-by-principals)
|
||||
- [Assured Workload Folder](#assured-workload-folder)
|
||||
- [Privileged Access Manager (PAM) Entitlements](#privileged-access-manager-pam-entitlements)
|
||||
- [Privileged Access Manager (PAM) Entitlements Factory](#privileged-access-manager-pam-entitlements-factory)
|
||||
@@ -56,11 +57,43 @@ IAM is managed via several variables that implement different features and level
|
||||
- `iam` and `iam_by_principals` configure authoritative bindings that manage individual roles exclusively, and are internally merged
|
||||
- `iam_bindings` configure authoritative bindings with optional support for conditions, and are not internally merged with the previous two variables
|
||||
- `iam_bindings_additive` configure additive bindings via individual role/member pairs with optional support conditions
|
||||
- `iam_by_principals_conditional` configure authoritative bindings with required conditions, allowing to specify roles and condition for each principal
|
||||
|
||||
The authoritative and additive approaches can be used together, provided different roles are managed by each. Some care must also be taken with the `iam_by_principals` variable to ensure that variable keys are static values, so that Terraform is able to compute the dependency graph.
|
||||
|
||||
IAM also supports variable interpolation for both roles and principals, via the respective attributes in the `var.context` variable. Refer to the [project module](../project/README.md#iam) for examples of the IAM interface.
|
||||
|
||||
### Conditional IAM by Principals
|
||||
|
||||
The `iam_by_principals_conditional` variable allows defining IAM bindings keyed by principal, where each principal shares a common condition for multiple roles. This is useful for granting access with specific conditions (e.g., time-based or resource-based) to users or groups across different roles.
|
||||
|
||||
```hcl
|
||||
module "folder" {
|
||||
source = "./fabric/modules/folder"
|
||||
parent = var.folder_id
|
||||
name = "Folder name"
|
||||
iam_by_principals_conditional = {
|
||||
"user:one@example.com" = {
|
||||
roles = ["roles/owner", "roles/viewer"]
|
||||
condition = {
|
||||
title = "expires_after_2024_12_31"
|
||||
description = "Expiring at midnight of 2024-12-31"
|
||||
expression = "request.time < timestamp(\"2025-01-01T00:00:00Z\")"
|
||||
}
|
||||
}
|
||||
"user:two@example.com" = {
|
||||
roles = ["roles/owner", "roles/viewer"]
|
||||
condition = {
|
||||
title = "expires_after_2024_12_31"
|
||||
description = "Expiring at midnight of 2024-12-31"
|
||||
expression = "request.time < timestamp(\"2025-01-01T00:00:00Z\")"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
# tftest modules=1 resources=3 inventory=iam-bpc.yaml
|
||||
```
|
||||
|
||||
## Assured Workload Folder
|
||||
|
||||
To create [Assured Workload](https://cloud.google.com/security/products/assured-workloads) folder instead of regular folder.
|
||||
@@ -604,6 +637,7 @@ module "folder" {
|
||||
| [iam_bindings_additive](variables-iam.tf#L39) | Individual additive IAM bindings. Keys are arbitrary. | <code title="map(object({ member = string role = string condition = optional(object({ expression = string title = string description = optional(string) })) }))">map(object({…}))</code> | | <code>{}</code> |
|
||||
| [iam_by_principals](variables-iam.tf#L61) | Authoritative IAM binding in {PRINCIPAL => [ROLES]} format. Principals need to be statically defined to avoid errors. Merged internally with the `iam` variable. | <code>map(list(string))</code> | | <code>{}</code> |
|
||||
| [iam_by_principals_additive](variables-iam.tf#L54) | Additive IAM binding in {PRINCIPAL => [ROLES]} format. Principals need to be statically defined to avoid errors. Merged internally with the `iam_bindings_additive` variable. | <code>map(list(string))</code> | | <code>{}</code> |
|
||||
| [iam_by_principals_conditional](variables-iam.tf#L68) | Authoritative IAM binding in {PRINCIPAL => {roles = [roles], condition = {cond}}} format. Principals need to be statically defined to avoid errors. Condition is required. | <code title="map(object({ roles = list(string) condition = object({ expression = string title = string description = optional(string) }) }))">map(object({…}))</code> | | <code>{}</code> |
|
||||
| [id](variables.tf#L150) | Folder ID in case you use folder_create=false. | <code>string</code> | | <code>null</code> |
|
||||
| [logging_data_access](variables-logging.tf#L17) | Control activation of data access logs. The special 'allServices' key denotes configuration for all services. | <code title="map(object({ ADMIN_READ = optional(object({ exempted_members = optional(list(string), []) })), DATA_READ = optional(object({ exempted_members = optional(list(string), []) })), DATA_WRITE = optional(object({ exempted_members = optional(list(string), []) })) }))">map(object({…}))</code> | | <code>{}</code> |
|
||||
| [logging_exclusions](variables-logging.tf#L28) | Logging exclusions for this folder in the form {NAME -> FILTER}. | <code>map(string)</code> | | <code>{}</code> |
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Copyright 2025 Google LLC
|
||||
* Copyright 2026 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -50,6 +50,33 @@ locals {
|
||||
}
|
||||
]...
|
||||
)
|
||||
# convert all the iam_by_principals_conditional into a flat list of bindings
|
||||
_iam_bindings_conditional = flatten([
|
||||
for principal, config in var.iam_by_principals_conditional : [
|
||||
for role in config.roles : {
|
||||
principal = principal
|
||||
role = role
|
||||
condition = config.condition
|
||||
}
|
||||
]
|
||||
])
|
||||
# group by (role, title)
|
||||
_iam_bindings_conditional_grouped = {
|
||||
for binding in local._iam_bindings_conditional :
|
||||
"iam-bpc:${binding.role}-${binding.condition.title}" => binding...
|
||||
}
|
||||
# finally we merge iam_bindings with the grouped conditional bindings
|
||||
iam_bindings = merge(
|
||||
var.iam_bindings,
|
||||
{
|
||||
for k, v in local._iam_bindings_conditional_grouped :
|
||||
k => {
|
||||
role = v[0].role
|
||||
condition = v[0].condition
|
||||
members = [for b in v : b.principal]
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
resource "google_folder_iam_binding" "authoritative" {
|
||||
@@ -63,7 +90,7 @@ resource "google_folder_iam_binding" "authoritative" {
|
||||
}
|
||||
|
||||
resource "google_folder_iam_binding" "bindings" {
|
||||
for_each = var.iam_bindings
|
||||
for_each = local.iam_bindings
|
||||
folder = local.folder_id
|
||||
role = lookup(local.ctx.custom_roles, each.value.role, each.value.role)
|
||||
members = [
|
||||
@@ -99,3 +126,4 @@ resource "google_folder_iam_member" "bindings" {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* Copyright 2025 Google LLC
|
||||
* Copyright 2026 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -64,3 +64,33 @@ variable "iam_by_principals" {
|
||||
default = {}
|
||||
nullable = false
|
||||
}
|
||||
|
||||
variable "iam_by_principals_conditional" {
|
||||
description = "Authoritative IAM binding in {PRINCIPAL => {roles = [roles], condition = {cond}}} format. Principals need to be statically defined to avoid errors. Condition is required."
|
||||
type = map(object({
|
||||
roles = list(string)
|
||||
condition = object({
|
||||
expression = string
|
||||
title = string
|
||||
description = optional(string)
|
||||
})
|
||||
}))
|
||||
default = {}
|
||||
nullable = false
|
||||
validation {
|
||||
condition = alltrue([
|
||||
for k, v in var.iam_by_principals_conditional : v.condition != null
|
||||
])
|
||||
error_message = "The `condition` attribute is required. Use `iam_by_principals` for non-conditional bindings."
|
||||
}
|
||||
validation {
|
||||
condition = alltrue([
|
||||
for title, conditions in {
|
||||
for k, v in var.iam_by_principals_conditional :
|
||||
v.condition.title => v.condition...
|
||||
} :
|
||||
length(distinct(conditions)) == 1
|
||||
])
|
||||
error_message = "IAM bindings with the same condition title must have identical expressions and descriptions."
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user