-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
33 lines (27 loc) · 912 Bytes
/
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
output "disabled" {
description = "List of user disabled status"
value = "${compact(concat(datadog_user.this.*.disabled, list("")))}"
}
output "ids" {
description = "List of user IDs"
value = "${compact(concat(datadog_user.this.*.id, list("")))}"
}
output "verified" {
description = "List of user verified status"
value = "${compact(concat(datadog_user.this.*.verified, list("")))}"
}
output "emails" {
description = "List of user emails"
value = "${compact(concat(data.null_data_source.this.*.outputs.email, list("")))}"
}
output "handles" {
description = "List of user handles"
value = "${compact(concat(data.null_data_source.this.*.outputs.handle, list("")))}"
}
output "names" {
description = "List of user names"
value = "${compact(concat(data.null_data_source.this.*.outputs.name, list("")))}"
}
output "users" {
value = "${var.users}"
}