Skip to content

Commit 76f2e2f

Browse files
committed
update MediaConvert service role arn
1 parent ca5c02f commit 76f2e2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Steps/Build/ConfigureEnvAndVersionStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __invoke(array $options): void
3232
'APP_VERSION' => $appVersion,
3333
'ASSET_URL' => Paths::assetUrl($appVersion),
3434
'AWS_MEDIACONVERT_ROLE_ID' => sprintf(
35-
'arn:aws:iam::%s:role/service-role/%s',
35+
'arn:aws:iam::%s:role/%s',
3636
Aws::accountId(),
3737
Helpers::keyedResourceName(Iam::MEDIA_CONVERT_ROLE),
3838
),

src/Steps/Ensures/EnsureEnvIsConfiguredCorrectlyStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected function checkAssetUrl(array $dotenv): void
5050
protected function checkMediaConvertConfiguration(array $dotenv): void
5151
{
5252
$expected = sprintf(
53-
'arn:aws:iam::%s:role/service-role/%s',
53+
'arn:aws:iam::%s:role/%s',
5454
Aws::accountId(),
5555
Helpers::keyedResourceName(Iam::MEDIA_CONVERT_ROLE),
5656
);

0 commit comments

Comments
 (0)