-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
54 lines (46 loc) · 1.19 KB
/
outputs.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
output "id" {
description = "The ID of the workspace."
value = tfe_workspace.this.id
}
output "organization" {
description = "The name of the organization."
value = tfe_workspace.this.organization
}
output "project" {
description = "The project which the workspace belongs to."
value = {
id = tfe_workspace.this.project_id
}
}
output "name" {
description = "The name of the workspace."
value = tfe_workspace.this.name
}
output "description" {
description = "The description of the workspace."
value = tfe_workspace.this.description
}
output "url" {
description = "The URL to the browsable HTML overview of the workspace."
value = tfe_workspace.this.html_url
}
output "statistics" {
description = "The statistics of the workspace."
value = {
resource_count = tfe_workspace.this.resource_count
}
}
# output "debug" {
# value = {
# for k, v in tfe_workspace.this :
# k => v
# if !contains(["name", "id", "organization", "description", "resource_count", "html_url", "project_id"], k)
# }
# }
# output "debug2" {
# value = tfe_workspace_policy_set.this
# }
#
# output "debug3" {
# value = tfe_workspace_variable_set.this
# }