Untitled
master007
plain_text
a year ago
353 B
6
Indexable
resource "aws_iam_role_policy_attachment" "ecr_read" {
role = aws_iam_role.beanstalk.name
policy_arn = "arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryReadOnly"
}
resource "aws_iam_role_policy_attachment" "s3_read" {
role = aws_iam_role.beanstalk.name
policy_arn = "arn:aws:iam::aws:policy/AmazonS3ReadOnlyAccess"
}
# Optional: Editor is loading...
Leave a Comment