mirror of
https://github.com/falcosecurity/falco.git
synced 2025-10-21 19:44:57 +00:00
As long as we are using rbac for allowing actions on several resources, we can restrict this a bit more.
15 lines
313 B
HCL
15 lines
313 B
HCL
locals {
|
|
patch_for_aws_auth = <<CONFIGMAPAWSAUTH
|
|
- rolearn: ${aws_iam_role.iam-for-lambda.arn}\n
|
|
username: kubernetes-response-engine
|
|
CONFIGMAPAWSAUTH
|
|
}
|
|
|
|
output "patch_for_aws_auth" {
|
|
value = "${local.patch_for_aws_auth}"
|
|
}
|
|
|
|
output "iam_for_lambda" {
|
|
value = "${aws_iam_role.iam-for-lambda.arn}"
|
|
}
|