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.
28 lines
699 B
HCL
28 lines
699 B
HCL
variable "azure_devops_org" {
|
|
type = string
|
|
default = "flux-azure"
|
|
description = "Name of Azure DevOps organizations were the repositories will be created"
|
|
}
|
|
|
|
variable "shared_suffix" {
|
|
type = string
|
|
default = "oarfish"
|
|
description = "Generated random suffix for resources created by terraform/shared"
|
|
}
|
|
|
|
variable "azuredevops_pat" {
|
|
type = string
|
|
description = "Personal access token for Azure DevOps repository"
|
|
}
|
|
|
|
variable "azuredevops_id_rsa" {
|
|
type = string
|
|
description = "Personal access token for Azure DevOps repository"
|
|
}
|
|
|
|
variable "azuredevops_id_rsa_pub" {
|
|
type = string
|
|
description = "Personal access token for Azure DevOps repository"
|
|
}
|
|
|