Skip to content
This repository was archived by the owner on Aug 9, 2023. It is now read-only.

Commit 3d90976

Browse files
authored
Merge pull request #95 from aws-samples/master
fix iam sids
2 parents 3a179ce + 8ba8a54 commit 3d90976

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/templates/nextflow/nextflow-resources.template.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Resources:
158158
Version: 2012-10-17
159159
Statement:
160160
# Nextflow requires full read access to gather the state of jobs being executed
161-
- Sid: "AWS Batch Read Access - All"
161+
- Sid: "batch-read-access-all"
162162
Effect: Allow
163163
Resource: "*"
164164
Action:
@@ -167,7 +167,7 @@ Resources:
167167

168168
# only permit access (job submission) to the queues and compute environments
169169
# configured to run nextflow
170-
- Sid: "AWS Batch Write Access - Job Submission"
170+
- Sid: "batch-write-access-job-submissions"
171171
Effect: Allow
172172
Resource:
173173
- !Ref BatchDefaultJobQueue
@@ -177,7 +177,7 @@ Resources:
177177

178178
# nextflow needs to be able to create job definitions
179179
# these are prefixed with "nf-"
180-
- Sid: "AWS Batch Write Access - Job Definitions"
180+
- Sid: "batch-write-access-job-definitions"
181181
Effect: Allow
182182
Resource:
183183
- arn:aws:batch:*:*:job-definition/nf-*:*

0 commit comments

Comments
 (0)