You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
402 B
Terraform
18 lines
402 B
Terraform
4 weeks ago
|
data "aws_iam_policy_document" "lambda-frontend-role" {
|
||
|
statement {
|
||
|
effect = "Allow"
|
||
|
principals {
|
||
|
type = "Service"
|
||
|
identifiers = ["lambda.amazonaws.com"]
|
||
|
}
|
||
|
actions = ["sts:AssumeRole"]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module "frontend-lambda" {
|
||
|
source = "./modules/lambda"
|
||
|
name = "frontend"
|
||
|
handler = "frontend"
|
||
|
policy = data.aws_iam_policy_document.lambda-frontend-role.json
|
||
|
}
|