/** * Copyright 2022 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 Billing resources for external billing use cases. locals { # used here for convenience, in organization.tf members are explicit billing_ext_users = concat( [ module.branch-dp-dev-sa.iam_email, module.branch-dp-prod-sa.iam_email, module.branch-network-sa.iam_email, module.branch-security-sa.iam_email, ], # enable if individual teams can create their own projects # [ # for k, v in module.branch-teams-team-sa : v.iam_email # ], local.branch_teams_pf_sa_iam_emails ) } # billing account in same org (resources is in the organization.tf file) # billing account in a different org module "billing-organization-ext" { source = "../../../modules/organization" count = local.billing_org_ext ? 1 : 0 organization_id = "organizations/${var.billing_account.organization_id}" iam_additive = { "roles/billing.user" = local.billing_ext_users } } # standalone billing account resource "google_billing_account_iam_member" "billing_ext_admin" { for_each = toset( local.billing_ext ? local.billing_ext_users : [] ) billing_account_id = var.billing_account.id role = "roles/billing.user" member = each.key }