06-iso-data-projects/modules/project-creation/variables.tf (42 lines of code) (raw):

/** * Copyright 2024 The Isolator Authors * * 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. */ /****************************************** Input Variables *****************************************/ # If not prefix is required then remove this variable. You need to remove the reference to it in the project name/id # If you do remove this from the project name/id, don't forget to remove the - as well so it doesnt' start with a - variable "project_prefix" { description = "If a prefix is required it may be entered here. Limit is 6 characters." type = string } variable "project_type" { description = "A unique identifier between security and data projects. Input is either 'sec' or 'data'" type = string } variable "project_unique_purpose" { description = "Purpose of project to be added to project name. Input is type string" type = string } variable "folder_id" { description = "The folder ID of where the project will reside." type = string } variable "billing_account_id" { description = "Billing Account ID where costs of the project will be charged." type = string } variable "apis_to_enable" { description = "List of APIs to be enabled on the project." type = list(string) }