* Remove service account key upload. Add create_ignore_already_exists * Add tag bindings to service accounts * Add description to create_ignore_already_exists * Remove broken links
60 lines
2.4 KiB
HCL
60 lines
2.4 KiB
HCL
/**
|
|
* Copyright 2025 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.
|
|
*/
|
|
|
|
locals {
|
|
name = split("@", var.name)[0]
|
|
prefix = var.prefix == null ? "" : "${var.prefix}-"
|
|
resource_email_static = "${local.prefix}${local.name}@${local.sa_domain}.iam.gserviceaccount.com"
|
|
resource_iam_email = (
|
|
local.service_account != null
|
|
? "serviceAccount:${local.service_account.email}"
|
|
: local.resource_iam_email_static
|
|
)
|
|
resource_iam_email_static = "serviceAccount:${local.resource_email_static}"
|
|
service_account_id_static = "projects/${var.project_id}/serviceAccounts/${local.resource_email_static}"
|
|
service_account = (
|
|
var.service_account_create
|
|
? try(google_service_account.service_account[0], null)
|
|
: try(data.google_service_account.service_account[0], null)
|
|
)
|
|
|
|
# universe-related locals
|
|
universe = try(regex("^([^:]*):[a-z]", var.project_id)[0], "")
|
|
project_id_no_universe = element(split(":", var.project_id), 1)
|
|
sa_domain = join(".", compact([local.project_id_no_universe, local.universe]))
|
|
}
|
|
|
|
data "google_service_account" "service_account" {
|
|
count = var.service_account_create ? 0 : 1
|
|
project = var.project_id
|
|
account_id = "${local.prefix}${local.name}"
|
|
}
|
|
|
|
resource "google_service_account" "service_account" {
|
|
count = var.service_account_create ? 1 : 0
|
|
project = var.project_id
|
|
account_id = "${local.prefix}${local.name}"
|
|
display_name = var.display_name
|
|
description = var.description
|
|
create_ignore_already_exists = var.create_ignore_already_exists
|
|
}
|
|
|
|
resource "google_tags_tag_binding" "binding" {
|
|
for_each = var.tag_bindings
|
|
parent = "//iam.googleapis.com/projects/${coalesce(var.project_number, var.project_id)}/serviceAccounts/${local.service_account.unique_id}"
|
|
tag_value = each.value
|
|
}
|