-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
89 lines (88 loc) · 2.72 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#
# Variable Declarations
#
variable "tfc_org" {}
variable "git_org" {}
variable "git_repo" {}
variable "github_oauth_token" {}
variable "tfe_token" {}
variable "publickey" {}
variable "azure_client" {}
variable "azure_client_secret" {}
variable "azure_subscription" {}
variable "azure_tenant" {}
locals {
target_branch = terraform.workspace
tfcvars = {
"publickeyfile" = {
value = var.publickey
category = "terraform"
hcl = false
sensitive = true
description = "public key used to setup the virtual machines in the build"
}
"specification_name" = {
value = terraform.workspace
category = "terraform"
hcl = false
sensitive = false
description = "the name of a map containing parameters for the environment build"
}
"ARM_CLIENT_ID" = {
value = var.azure_client
category = "env"
hcl = false
sensitive = true
description = "Azure Client ID"
}
"ARM_CLIENT" = {
value = var.azure_client
category = "terraform"
hcl = false
sensitive = true
description = "Azure Client ID"
}
"ARM_CLIENT_SECRET" = {
value = var.azure_client_secret
category = "env"
hcl = false
sensitive = true
description = "Azure Client Secret"
}
"ARM_CLIENT_SECRETS" = {
value = var.azure_client_secret
category = "terraform"
hcl = false
sensitive = true
description = "Azure Client Secret"
}
"ARM_SUBSCRIPTION_ID" = {
value = var.azure_subscription
category = "env"
hcl = false
sensitive = true
description = "Azure Resource Subscription"
}
"ARM_SUBSCRIPTION" = {
value = var.azure_subscription
category = "terraform"
hcl = false
sensitive = true
description = "Azure Resource Subscription"
}
"ARM_TENANT_ID" = {
value = var.azure_tenant
category = "env"
hcl = false
sensitive = true
description = "Azure Resource Tenant"
}
"ARM_TENANT" = {
value = var.azure_tenant
category = "terraform"
hcl = false
sensitive = true
description = "Azure Resource Tenant"
}
}
}