mirror of
https://github.com/falcosecurity/falco.git
synced 2025-10-21 19:44:57 +00:00
17 lines
354 B
HCL
17 lines
354 B
HCL
locals {
|
|
patch_for_aws_auth = <<CONFIGMAPAWSAUTH
|
|
- rolearn: ${aws_iam_role.iam-for-lambda.arn}\n
|
|
username: kubernetes-response-engine\n
|
|
groups:\n
|
|
- system:masters
|
|
CONFIGMAPAWSAUTH
|
|
}
|
|
|
|
output "patch_for_aws_auth" {
|
|
value = "${local.patch_for_aws_auth}"
|
|
}
|
|
|
|
output "iam_for_lambda" {
|
|
value = "${aws_iam_role.iam-for-lambda.arn}"
|
|
}
|