We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd928fa commit ec33c91Copy full SHA for ec33c91
segment-detection-workflow/template.yaml
@@ -10,7 +10,7 @@ Resources:
10
DefinitionUri: statemachine/statemachine.asl.json
11
DefinitionSubstitutions:
12
AWS_ACCOUNT_ID: !Ref AWS::AccountId
13
- MEDIACONVERT_ROLE : !Ref MediaConvertRole
+ MEDIACONVERT_ROLE : !GetAtt MediaConvertRole.Arn
14
REGION: !Ref AWS::Region
15
Policies:
16
- Version: "2012-10-17"
@@ -64,7 +64,13 @@ Resources:
64
"s3:List*",
65
"s3:Put*"
66
]
67
- Resource: !GetAtt S3Bucket.Arn
+ Resource:
68
+ - !GetAtt S3Bucket.Arn
69
+ - !Join
70
+ - ''
71
+ - - !GetAtt S3Bucket.Arn
72
+ - '/*'
73
+
74
75
76
Outputs:
0 commit comments