terraform-modules/project/variables.tf (41 lines of code) (raw):
/**
* 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
*
* https://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 "base_project_name" {
type = string
description = "Base name of the project, this will get concatenated with the env to make the full project name."
}
variable "folder_id" {
description = "Id of a folder to host this project."
type = string
default = ""
}
variable "org_id" {
description = "GCP organization ID."
type = string
}
variable "billing_account" {
description = "Id of the billing account to associate this project with."
type = string
}
variable "env" {
type = string
description = "Environment that this project will be used for. Example: dev, staging, prod."
}
variable "addtl_apis" {
type = list(string)
default = []
description = "List of apis to activate in addition the the core apis specified by the platform engineering team."
}