Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-e-tabaska committed Jun 5, 2024
1 parent 5cdac3d commit 28862a6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions cloudformation/bc_ecs_task_role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,45 +46,45 @@ Resources:
PolicyDocument:
Version: "2012-10-17"
Statement:
- Sid: "write logs"
- Sid: "writeLogs"
Effect: "Allow"
Action:
- "logs:CreateLogStream"
- "logs:PutLogEvents"
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:*"
- Sid: "s3 bucket access"
- Sid: "s3BucketAccess"
Effect: "Allow"
Action:
- "s3:ListBucket"
Resource: "arn:aws:s3:::*"
- Sid: "s3 object access"
- Sid: "s3ObjectAccess"
Effect: "Allow"
Action:
- "s3:PutObject"
- "s3:GetObject"
- "s3:PutObjectAcl"
- "s3:AbortMultipartUpload"
Resource: "arn:aws:s3:::*/*"
- Sid: "delete s3 control objects"
- Sid: "deleteControlObjects"
Effect: "Allow"
Action:
- "s3:DeleteObject"
Resource: "arn:aws:s3:::*/_control_/*"
- Sid: "ecr access"
- Sid: "ecrAccess"
Effect: "Allow"
Action:
- "ecr:GetAuthorizationToken"
- "ecr:BatchCheckLayerAvailability"
- "ecr:GetDownloadUrlForLayer"
- "ecr:BatchGetImage"
Resource: "*"
- Sid: "ec2 instance tagging"
- Sid: "ec2InstanceTagging"
Effect: "Allow"
Action:
- "ec2:CreateTags"
- "ec2:DeleteTags"
Resource: "*"
- Sid: "terminate state machine execution"
- Sid: "abortExecution"
Effect: "Allow"
Action:
- "states:StopExecution"
Expand Down

0 comments on commit 28862a6

Please sign in to comment.