We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f214ff commit 1808597Copy full SHA for 1808597
cfn/ESDK-Python.yml
@@ -18,7 +18,7 @@ Parameters:
18
Description: The number of builds you expect to run in a batch
19
20
Metadata:
21
- AWS::CloudFormation::Interface:
+ AWS::CloudFormation::Interface:
22
ParameterGroups:
23
-
24
Label:
@@ -339,3 +339,20 @@ Resources:
339
}
340
]
341
342
+
343
+ CodeBuildCISTSAllow:
344
+ Type: "AWS::IAM::ManagedPolicy"
345
+ Properties:
346
+ ManagedPolicyName: !Sub CodeBuildCISTSAllow-${ProjectName}
347
+ Path: /service-role/
348
+ PolicyDocument: |
349
+ {
350
+ "Version": "2012-10-17",
351
+ "Statement": [
352
353
+ "Effect": "Allow",
354
+ "Action": "sts:AssumeRole",
355
+ "Resource": "arn:aws:iam::370957321024:role/GitHub-CI-Public-ESDK-Java-Role-us-west-2"
356
+ }
357
+ ]
358
0 commit comments