-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
49 lines (41 loc) · 1.29 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
variable "organization" {
type = string
description = "Name of the organization"
}
variable "api_url" {
type = string
description = "The base URL of your VCS provider's API"
}
variable "http_url" {
type = string
description = "The homepage of your VCS provider"
}
variable "oauth_token" {
type = string
default = null
description = "The token string you were given by your VCS provider"
}
variable "private_key" {
type = string
default = null
description = "The text of the private key associated with your Azure DevOps Server account"
}
variable "key" {
type = string
default = null
description = "The OAuth Client key can refer to a Consumer Key, Application Key, or another type of client key for the VCS provider"
}
variable "secret" {
type = string
default = null
description = "The OAuth Client secret is used for BitBucket Server, this secret is the the text of the SSH private key associated with your BitBucket Server Application Link"
}
variable "rsa_public_key" {
type = string
default = null
description = "Required for BitBucket Server in conjunction with the secret"
}
variable "service_provider" {
type = string
description = "The VCS provider being connected with"
}