-
Notifications
You must be signed in to change notification settings - Fork 0
/
variable.tf
44 lines (36 loc) · 919 Bytes
/
variable.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
variable "subscription_id" {
type = string
}
variable "tenant_id" {
type = string
}
variable "subscription_name" {
type = string
}
variable "project_admin_user_email" {
type = string
description = "The email address of the user who will be the admin of the DevOps Project"
}
variable "repo_name" {
type = string
description = "The name of your Code Repository"
}
variable "work_item_template" {
type = string
description = "Azure DevOps Work Item Template"
default = "Agile"
}
variable "version_control" {
type = string
description = "TFVC or Git"
default = "Git"
}
variable "project_description" {
type = string
description = "Please enter a description for your DevOps Project"
default = "Please enter a description for your DevOps Project"
}
variable "project_name" {
type = string
description = "Please enter a name for your project"
}