-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.tf
101 lines (91 loc) · 2.71 KB
/
main.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
locals {
metadata = {
package = "terraform-aws-observability"
version = trimspace(file("${path.module}/../../VERSION"))
module = basename(path.module)
name = var.name
}
module_tags = var.module_tags_enabled ? {
"module.terraform.io/package" = local.metadata.package
"module.terraform.io/version" = local.metadata.version
"module.terraform.io/name" = local.metadata.module
"module.terraform.io/full-name" = "${local.metadata.package}/${local.metadata.module}"
"module.terraform.io/instance" = local.metadata.name
} : {}
}
###################################################
# CloudWatch OAM Sink
###################################################
resource "aws_oam_sink" "this" {
name = var.name
tags = merge(
{
"Name" = local.metadata.name
},
local.module_tags,
var.tags,
)
}
###################################################
# CLoudWatch OAM Sink Policy
###################################################
locals {
source_accounts_statement = {
Effect = "Allow"
Principal = {
"AWS" = var.allowed_source_accounts
}
Action = ["oam:CreateLink", "oam:UpdateLink"]
Resource = "*"
Condition = {
"ForAllValues:StringEquals" = {
"oam:ResourceTypes" = var.telemetry_types
}
}
}
source_organizations_statement = {
Effect = "Allow"
Principal = "*"
Action = ["oam:CreateLink", "oam:UpdateLink"]
Resource = "*"
Condition = {
"ForAllValues:StringEquals" = {
"oam:ResourceTypes" = var.telemetry_types
}
"ForAnyValue:StringEquals" = {
"aws:PrincipalOrgID" = var.allowed_source_organizations
}
}
}
source_organization_paths_statement = {
Effect = "Allow"
Principal = "*"
Action = ["oam:CreateLink", "oam:UpdateLink"]
Resource = "*"
Condition = {
"ForAllValues:StringEquals" = {
"oam:ResourceTypes" = var.telemetry_types
}
"ForAnyValue:StringEquals" : {
"aws:PrincipalOrgPaths" : var.allowed_source_organization_paths
}
}
}
policy_required = length(concat(
var.allowed_source_accounts,
var.allowed_source_organizations,
var.allowed_source_organization_paths,
)) > 0
}
resource "aws_oam_sink_policy" "this" {
count = local.policy_required ? 1 : 0
sink_identifier = aws_oam_sink.this.arn
policy = jsonencode({
Version = "2012-10-17"
Statement = concat(
length(var.allowed_source_accounts) > 0 ? [local.source_accounts_statement] : [],
length(var.allowed_source_organizations) > 0 ? [local.source_organizations_statement] : [],
length(var.allowed_source_organization_paths) > 0 ? [local.source_organization_paths_statement] : [],
)
})
}