-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathself-tfe-variables.tf.json
55 lines (55 loc) · 1.61 KB
/
self-tfe-variables.tf.json
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
{
"resource": {
"tfe_variable": {
"self-gitlab_token": {
"category": "terraform",
"sensitive": true,
"key": "gitlab_token",
"value": "${var.gitlab_token}",
"workspace_id": "${tfe_workspace.self.id}"
},
"self-github_token": {
"category": "terraform",
"sensitive": true,
"key": "github_token",
"value": "${var.github_token}",
"workspace_id": "${tfe_workspace.self.id}"
},
"self-tfe_token": {
"category": "terraform",
"sensitive": true,
"key": "tfe_token",
"value": "${var.tfe_token}",
"workspace_id": "${tfe_workspace.self.id}"
},
"self-gitlab_group": {
"category": "terraform",
"sensitive": false,
"key": "gitlab_group",
"value": "${var.gitlab_group}",
"workspace_id": "${tfe_workspace.self.id}"
},
"self-github_organization": {
"category": "terraform",
"sensitive": false,
"key": "github_organization",
"value": "${var.github_organization}",
"workspace_id": "${tfe_workspace.self.id}"
},
"self-tfe_organization_email": {
"category": "terraform",
"sensitive": false,
"key": "tfe_organization_email",
"value": "${var.tfe_organization_email}",
"workspace_id": "${tfe_workspace.self.id}"
},
"self-tfe_organization": {
"category": "terraform",
"sensitive": false,
"key": "tfe_organization",
"value": "${var.tfe_organization}",
"workspace_id": "${tfe_workspace.self.id}"
}
}
}
}