Files
hunfabric/modules/organization/identity-providers.tf
kovagoadam 1050daff71 Add support for creating multiple workforce identity pools (#3846)
* Added support for multiple workforce identity pools

* Fixed organization module workforce identity federation outputs

* tfdoc

---------

Co-authored-by: Ludovico Magnocavallo <ludomagno@google.com>
Co-authored-by: Julio Castillo <jccb@google.com>
2026-04-14 06:55:18 +00:00

196 lines
6.5 KiB
HCL

/**
* 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
# tfdoc:file:description Workforce Identity Federation provider definitions.
locals {
wfif_attribute_mappings = {
azuread = {
"google.subject" = "assertion.subject"
"google.display_name" = "assertion.attributes.userprincipalname[0]"
"google.groups" = "assertion.attributes.groups"
"attribute.first_name" = "assertion.attributes.givenname[0]"
"attribute.last_name" = "assertion.attributes.surname[0]"
"attribute.user_email" = "assertion.attributes.mail[0]"
}
okta = {
"google.subject" = "assertion.subject"
"google.display_name" = "assertion.subject"
"google.groups" = "assertion.attributes.groups"
"attribute.first_name" = "assertion.attributes.firstName[0]"
"attribute.last_name" = "assertion.attributes.lastName[0]"
"attribute.user_email" = "assertion.attributes.email[0]"
}
}
wfif_providers = merge([
for k, v in var.workforce_identity_pools : {
for pk, pv in v.providers : "${k}/${pk}" => merge(pv, {
provider_id = pk
pool = k
})
}
]...)
}
resource "google_iam_workforce_pool" "default" {
for_each = var.workforce_identity_pools
parent = var.organization_id
location = "global"
workforce_pool_id = each.key
description = each.value.description
disabled = each.value.disabled
display_name = each.value.display_name
session_duration = each.value.session_duration
dynamic "access_restrictions" {
for_each = each.value.access_restrictions != null ? [""] : []
content {
disable_programmatic_signin = each.value.access_restrictions.disable_programmatic_signin
dynamic "allowed_services" {
for_each = coalesce(each.value.access_restrictions.allowed_services, [])
content {
domain = allowed_services.value.domain
}
}
}
}
}
resource "google_iam_workforce_pool_provider" "default" {
for_each = local.wfif_providers
provider_id = each.value.provider_id
attribute_condition = each.value.attribute_condition
description = each.value.description
disabled = each.value.disabled
display_name = each.value.display_name
attribute_mapping = merge(
try(local.wfif_attribute_mappings[each.value.attribute_mapping_template], {}),
each.value.attribute_mapping
)
location = "global"
workforce_pool_id = (
google_iam_workforce_pool.default[each.value.pool].workforce_pool_id
)
dynamic "saml" {
for_each = each.value.identity_provider.saml == null ? [] : [""]
content {
idp_metadata_xml = each.value.identity_provider.saml.idp_metadata_xml
}
}
dynamic "oidc" {
for_each = each.value.identity_provider.oidc == null ? [] : [""]
content {
issuer_uri = each.value.identity_provider.oidc.issuer_uri
client_id = each.value.identity_provider.oidc.client_id
jwks_json = each.value.identity_provider.oidc.jwks_json
dynamic "client_secret" {
for_each = (
each.value.identity_provider.oidc.client_secret == null ? [] : [""]
)
content {
value {
plain_text = each.value.identity_provider.oidc.client_secret
}
}
}
dynamic "web_sso_config" {
for_each = (
each.value.identity_provider.oidc.web_sso_config == null ? [] : [""]
)
content {
response_type = (
each.value.identity_provider.oidc.web_sso_config.response_type
)
assertion_claims_behavior = (
each.value.identity_provider.oidc.web_sso_config.assertion_claims_behavior
)
additional_scopes = (
each.value.identity_provider.oidc.web_sso_config.additional_scopes
)
}
}
}
}
dynamic "extra_attributes_oauth2_client" {
for_each = (
try(each.value.oauth2_client_config.extra_attributes, null) == null ? [] : [""]
)
content {
issuer_uri = (
each.value.oauth2_client_config.extra_attributes.issuer_uri
)
client_id = (
each.value.oauth2_client_config.extra_attributes.client_id
)
attributes_type = (
each.value.oauth2_client_config.extra_attributes.attributes_type
)
dynamic "client_secret" {
for_each = (
each.value.oauth2_client_config.extra_attributes.client_secret == null ? [] : [""]
)
content {
value {
plain_text = each.value.oauth2_client_config.extra_attributes.client_secret
}
}
}
dynamic "query_parameters" {
for_each = (
each.value.oauth2_client_config.extra_attributes.query_filter == null ? [] : [""]
)
content {
filter = each.value.oauth2_client_config.extra_attributes.query_filter
}
}
}
}
dynamic "extended_attributes_oauth2_client" {
for_each = (
try(each.value.oauth2_client_config.extended_attributes, null) == null ? [] : [""]
)
content {
issuer_uri = (
each.value.oauth2_client_config.extended_attributes.issuer_uri
)
client_id = (
each.value.oauth2_client_config.extended_attributes.client_id
)
attributes_type = (
each.value.oauth2_client_config.extended_attributes.attributes_type
)
dynamic "client_secret" {
for_each = (
each.value.oauth2_client_config.extended_attributes.client_secret == null ? [] : [""]
)
content {
value {
plain_text = each.value.oauth2_client_config.extended_attributes.client_secret
}
}
}
dynamic "query_parameters" {
for_each = (
each.value.oauth2_client_config.extended_attributes.query_filter == null ? [] : [""]
)
content {
filter = each.value.oauth2_client_config.extended_attributes.query_filter
}
}
}
}
}