We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 682b22a commit 72bc973Copy full SHA for 72bc973
packages/integration-tests/src/test-project-setup/seed_test_project.ts
@@ -128,6 +128,7 @@ class SeedTestProject extends TestProjectBase {
128
env: environment,
129
}
130
);
131
+ console.log(seedPolicyProcess.stdout);
132
133
const clientConfig = await generateClientConfig(backendIdentifier, '1.3');
134
if (!clientConfig.custom) {
@@ -139,7 +140,7 @@ class SeedTestProject extends TestProjectBase {
139
140
new AssumeRoleCommand({
141
RoleArn: seedRoleArn,
142
RoleSessionName: `seedSession`,
- Policy: seedPolicyProcess.stdout,
143
+ Policy: JSON.stringify(JSON.parse(seedPolicyProcess.stdout)),
144
PolicyArns: [
145
{
146
arn: 'arn:aws:iam::aws:policy/service-role/AmplifyBackendDeployFullAccess',
0 commit comments