-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
55 lines (46 loc) · 1.28 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
variable "azuredevops_token" {
type = string
description = "Azure DevOps Personal Access Token, used only to set up the initial agent communication"
sensitive = true
}
variable "azuredevops_url" {
type = string
description = "URL for the Azure DevOps org, e.g. https://dev.azure.com/myorg"
}
variable "build_agent_repo_source_url" {
type = string
default = "https://github.com/terraform-azurerm-examples/terraform-azuredevops-buildagent.git"
description = "Source URL for build agent Docker files"
}
variable "container_group_name" {
type = string
default = "estfbuildagent"
}
variable "container_image_name" {
type = string
default = "eslz/buildagent:main"
}
variable "container_registry_prefix" {
type = string
default = "eslztf"
}
variable "environment" {
type = string
default = "prod"
description = "Environment, e.g. 'prod' or 'canary'"
}
variable "key_vault_prefix" {
type = string
default = "estf"
description = "Location of Azure resources"
}
variable "location" {
type = string
default = "westeurope"
description = "Location of Azure resources"
}
variable "storage_account_prefix" {
type = string
default = "estf"
description = "Location of Azure resources"
}