Skip to content

Commit

Permalink
Fix roles
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewBarba committed Dec 14, 2023
1 parent 61e184b commit 3aef28a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const s3Policy = new aws.iam.Policy('swift-build-s3-write-only', {
Effect: 'Allow',
Action: ['s3:PutObject'],
Resource: [
'arn:aws:s3:::prod-swift-cloud-api-stac-artifactsbucket70f686f6-4negqqu8x5bo/*',
'arn:aws:s3:::prod-infra-api-artifactsbucket70f686f6-ahndteqyzoel',
'arn:aws:s3:::dev-swift-cloud-api-stack-artifactsbucket70f686f6-jlbt8mnklu1n/*'
]
}
Expand All @@ -86,8 +86,8 @@ const sqsPolicy = new aws.iam.Policy('swift-build-sqs-read-delete-send', {
Effect: 'Allow',
Action: ['sqs:SendMessage'],
Resource: [
'arn:aws:sqs:us-east-1:172469817718:dev-swift-cloud-BuildQueue.fifo',
'arn:aws:sqs:us-east-1:172469817718:prod-swift-cloud-BuildQueue.fifo'
'arn:aws:sqs:us-east-1:172469817718:dev-infra-BuildQueue.fifo',
'arn:aws:sqs:us-east-1:172469817718:prod-infra-BuildQueue.fifo'
]
}
]
Expand Down

0 comments on commit 3aef28a

Please sign in to comment.