-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
34 lines (28 loc) · 1.06 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
output "arn" {
description = "The ARN of the CloudWatch OAM sink."
value = aws_oam_sink.this.arn
}
output "id" {
description = "The ID of the CloudWatch OAM sink."
value = aws_oam_sink.this.sink_id
}
output "name" {
description = "The name of CloudWatch OAM sink."
value = aws_oam_sink.this.name
}
output "telemetry_types" {
description = "A set of the telemetry types can be shared with it."
value = var.telemetry_types
}
output "allowed_source_accounts" {
description = "A list of the IDs of AWS accounts allowed to share data with this monitoring account."
value = var.allowed_source_accounts
}
output "allowed_source_organizations" {
description = "A list of the organization IDs of AWS accounts allowed to share data with this monitoring account."
value = var.allowed_source_organizations
}
output "allowed_source_organization_paths" {
description = "A list of the organization paths of AWS accounts allowed to share data with this monitoring account."
value = var.allowed_source_organization_paths
}