mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
515 B
HCL
22 lines
515 B
HCL
variable "azuredevops_org" {
|
|
type = string
|
|
description = "Name of Azure DevOps organizations were the repositories will be created"
|
|
}
|
|
|
|
variable "azure_location" {
|
|
type = string
|
|
description = "Location of the resource group"
|
|
default = "eastus"
|
|
}
|
|
|
|
variable "tags" {
|
|
type = map(string)
|
|
default = {}
|
|
description = "Tags for created Azure resources"
|
|
}
|
|
|
|
variable "azuredevops_pat" {
|
|
type = string
|
|
description = "Personal access token for Azure DevOps repository"
|
|
}
|