caf-terraform-landingzones/caf_solution/add-ons/azure_devops_v1/variables.tf

78 строки
1.4 KiB
Terraform
Исходник Постоянная ссылка Обычный вид История

2021-04-27 13:29:39 +03:00
# Map of the remote data state for lower level
2021-06-28 10:06:37 +03:00
variable "lower_storage_account_name" {
default = null
}
variable "lower_container_name" {
default = null
}
variable "lower_resource_group_name" {
default = null
}
2021-04-27 13:29:39 +03:00
2021-06-28 10:06:37 +03:00
variable "tfstate_storage_account_name" {
default = null
}
variable "tfstate_container_name" {
default = null
}
variable "tfstate_key" {
default = null
}
variable "tfstate_resource_group_name" {
default = null
}
2021-04-27 13:29:39 +03:00
variable "tfstate_subscription_id" {
default = null
2021-04-27 13:29:39 +03:00
description = "This value is propulated by the rover. subscription id hosting the remote tfstates"
}
variable "global_settings" {
default = {}
}
2021-06-28 10:06:37 +03:00
variable "tenant_id" {
default = null
}
2021-04-27 13:29:39 +03:00
variable "landingzone" {
}
variable "rover_version" {
default = null
}
variable "logged_user_objectId" {
default = null
}
variable "logged_aad_app_objectId" {
default = null
}
variable "azure_devops" {
default = {}
}
2021-06-28 07:08:46 +03:00
variable "tags" {
type = map(any)
default = null
2021-06-28 07:08:46 +03:00
}
2021-04-27 13:29:39 +03:00
variable "organization_agent_pools" {
default = {}
}
variable "projects" {
default = {}
}
variable "project_agent_pools" {
default = {}
}
variable "service_endpoints" {
default = {}
}
variable "variable_groups" {
default = {}
}
variable "pipelines" {
default = {}
2021-06-28 06:49:22 +03:00
}
2021-06-28 07:32:31 +03:00
variable "azdo_pat_admin" {
2021-06-28 06:49:22 +03:00
type = string
default = null
description = "(Optional). Azure Devops PAT Token. If not provided with this value must be retrieved from the Keyvault secret."
}