mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-25 15:39:37 -05:00
terraform: add necessary IAM permissions for AWS
This commit is contained in:
parent
be2b38f2ac
commit
d979aeea2d
@ -105,7 +105,11 @@ resource "aws_iam_policy" "control_plane_policy" {
|
|||||||
"elasticloadbalancing:DeregisterTargets",
|
"elasticloadbalancing:DeregisterTargets",
|
||||||
"elasticloadbalancing:SetLoadBalancerPoliciesOfListener",
|
"elasticloadbalancing:SetLoadBalancerPoliciesOfListener",
|
||||||
"iam:CreateServiceLinkedRole",
|
"iam:CreateServiceLinkedRole",
|
||||||
"kms:DescribeKey"
|
"kms:DescribeKey",
|
||||||
|
"logs:DescribeLogGroups",
|
||||||
|
"logs:ListTagsLogGroup",
|
||||||
|
"logs:CreateLogStream",
|
||||||
|
"tag:GetResources"
|
||||||
],
|
],
|
||||||
"Resource": [
|
"Resource": [
|
||||||
"*"
|
"*"
|
||||||
@ -164,7 +168,11 @@ resource "aws_iam_policy" "worker_node_policy" {
|
|||||||
"ecr:GetRepositoryPolicy",
|
"ecr:GetRepositoryPolicy",
|
||||||
"ecr:DescribeRepositories",
|
"ecr:DescribeRepositories",
|
||||||
"ecr:ListImages",
|
"ecr:ListImages",
|
||||||
"ecr:BatchGetImage"
|
"ecr:BatchGetImage",
|
||||||
|
"logs:DescribeLogGroups",
|
||||||
|
"logs:ListTagsLogGroup",
|
||||||
|
"logs:CreateLogStream",
|
||||||
|
"tag:GetResources"
|
||||||
],
|
],
|
||||||
"Resource": "*"
|
"Resource": "*"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user