* preliminary support for wif in stage 0 * IAM wif role * IAM wif role TODO * add support for external SA IAM to SA module * add name output to SA module * separate cicd SA * tfdoc * GITLAB principal (untested) * make GCS name output static * outputs bucket * fix stage 1 test * tweak outputs * tfdoc * move wif_pool to automation variable * add support for top-level and repository providers * add missing boilerplate * fix branchless principal * initial workflow * symlink provider template in stages * remove service accounts from stage 0 cicd tfvars * add cicd interface variable to resman stage * fix cicd variable in resman stage * better condition on outputs_location * fix last change * change outputs_location type * revert outputs_location change * split outputs in stage 0 * update ci/cd temporary notes * rename additive IAM resource in SA module * split outputs in stage 1 * remove unused locals * fix stage 1 tests * tfdoc * Upload action files to outputs_bucket * Fix tests and README * rename template, streamline outputs * local templates and gcs output for all stage 2 * add workflows to local output files * Use lowercase WIF providers everywhere * Bring back suffix for workflow files * Remove unused files * Update READMEs * preliminary CI/CD implementation for stage 1 * fix stage 1 * stage 1 cicd * tfdoc * fix tests * readme and links for cicd and wif * refactor wif providers * refactor cicd for stage 1 * fix stage 1 * wif org policies * split identity provider configuration from cicd * add type attribute to cicd repositories * valid cicd repositories have a workflow template * refactor stage 01 * fix stage 01 tests * minimal CI/CD documentation * better check_links error reporting * fix links * Added Gitlab specific configurations Set the default issuer_uri for Gitlab. Added allowed audiences to OIDC configuration. * Fixed TF formatting in identity providers. * Changing identity provider audience to null Changing identity provider audience to default to null. * add instructions for renaming workflows * address Julio's comments Co-authored-by: Julio Castillo <jccb@google.com> Co-authored-by: alexmeissner <alexmeissner@google.com>
111 lines
3.1 KiB
HCL
111 lines
3.1 KiB
HCL
/**
|
|
* 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.
|
|
*/
|
|
|
|
variable "description" {
|
|
description = "Optional description."
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "display_name" {
|
|
description = "Display name of the service account to create."
|
|
type = string
|
|
default = "Terraform-managed."
|
|
}
|
|
|
|
variable "generate_key" {
|
|
description = "Generate a key for service account."
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "iam" {
|
|
description = "IAM bindings on the service account in {ROLE => [MEMBERS]} format."
|
|
type = map(list(string))
|
|
default = {}
|
|
nullable = false
|
|
}
|
|
|
|
variable "iam_billing_roles" {
|
|
description = "Billing account roles granted to this service account, by billing account id. Non-authoritative."
|
|
type = map(list(string))
|
|
default = {}
|
|
nullable = false
|
|
}
|
|
|
|
variable "iam_folder_roles" {
|
|
description = "Folder roles granted to this service account, by folder id. Non-authoritative."
|
|
type = map(list(string))
|
|
default = {}
|
|
nullable = false
|
|
}
|
|
|
|
variable "iam_organization_roles" {
|
|
description = "Organization roles granted to this service account, by organization id. Non-authoritative."
|
|
type = map(list(string))
|
|
default = {}
|
|
nullable = false
|
|
}
|
|
|
|
variable "iam_project_roles" {
|
|
description = "Project roles granted to this service account, by project id."
|
|
type = map(list(string))
|
|
default = {}
|
|
nullable = false
|
|
}
|
|
|
|
variable "iam_sa_roles" {
|
|
description = "Service account roles granted to this service account, by service account name."
|
|
type = map(list(string))
|
|
default = {}
|
|
nullable = false
|
|
}
|
|
|
|
variable "iam_storage_roles" {
|
|
description = "Storage roles granted to this service account, by bucket name."
|
|
type = map(list(string))
|
|
default = {}
|
|
nullable = false
|
|
}
|
|
|
|
variable "name" {
|
|
description = "Name of the service account to create."
|
|
type = string
|
|
}
|
|
|
|
variable "prefix" {
|
|
description = "Prefix applied to service account names."
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "Project id where service account will be created."
|
|
type = string
|
|
}
|
|
|
|
variable "public_keys_directory" {
|
|
description = "Path to public keys data files to upload to the service account (should have `.pem` extension)."
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "service_account_create" {
|
|
description = "Create service account. When set to false, uses a data source to reference an existing service account."
|
|
type = bool
|
|
default = true
|
|
}
|