mirror of
https://github.com/projecthorus/sondehub-infra.git
synced 2024-12-19 05:07:55 +00:00
20 lines
458 B
Terraform
20 lines
458 B
Terraform
|
data "aws_iam_policy_document" "lambda_assume_role_policy" {
|
||
|
statement {
|
||
|
actions = ["sts:AssumeRole"]
|
||
|
principals {
|
||
|
type = "Service"
|
||
|
identifiers = ["lambda.amazonaws.com", "edgelambda.amazonaws.com"]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
data "aws_iam_policy_document" "ecs_task_assume_role_policy" {
|
||
|
statement {
|
||
|
actions = ["sts:AssumeRole"]
|
||
|
principals {
|
||
|
type = "Service"
|
||
|
identifiers = ["ecs-tasks.amazonaws.com"]
|
||
|
}
|
||
|
}
|
||
|
}
|