forked from moneyforwardvietnam/terraform-datadog-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
36 lines (30 loc) · 1.04 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
output "id" {
value = try(datadog_child_organization.default[0].id, "")
description = "Organization ID"
}
output "description" {
value = try(datadog_child_organization.default[0].description, "")
description = "Description of the organization"
}
output "public_id" {
value = try(datadog_child_organization.default[0].public_id, "")
description = "Public ID of the organization"
}
output "user" {
value = try(datadog_child_organization.default[0].user[0], {})
description = "Information about organization users"
}
output "settings" {
value = try(datadog_child_organization.default[0].settings[0], {})
description = "Organization settings"
}
output "api_key" {
value = try(datadog_child_organization.default[0].api_key[0], {})
description = "Information about Datadog API key"
sensitive = true
}
output "application_key" {
value = try(datadog_child_organization.default[0].application_key[0], {})
description = "Datadog application key with its associated metadata"
sensitive = true
}