Files
Somtochi Onyekwere f6b0c6e7ef Add refactored e2e tests
Signed-off-by: Somtochi Onyekwere <somtochionyekwere@gmail.com>
2023-08-29 17:43:53 +05:30

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"
}