1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# locals =====================================================================
locals {
tags = merge(
{
ManagedBy = "terraform"
Module = "governance/guardduty"
},
var.tags,
)
organization_features = var.detector_organization_configuration != null ? var.detector_organization_configuration.features : {}
runtime_features = toset(["RUNTIME_MONITORING", "EKS_RUNTIME_MONITORING"])
}
|