Skip to content

Commit

Permalink
Retry integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol committed Apr 12, 2024
1 parent 05ad921 commit 1a3b36d
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 72 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"UpdateReplacePolicy": "Retain",
"DeletionPolicy": "Retain"
},
"MyUserDC45028B": {
"MyIamUser046086A4": {
"Type": "AWS::IAM::User"
},
"MyUserDefaultPolicy7B897426": {
"MyIamUserDefaultPolicy4B9C0A95": {
"Type": "AWS::IAM::Policy",
"Properties": {
"PolicyDocument": {
Expand Down Expand Up @@ -58,10 +58,10 @@
],
"Version": "2012-10-17"
},
"PolicyName": "MyUserDefaultPolicy7B897426",
"PolicyName": "MyIamUserDefaultPolicy4B9C0A95",
"Users": [
{
"Ref": "MyUserDC45028B"
"Ref": "MyIamUser046086A4"
}
]
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repo.addToResourcePolicy(new iam.PolicyStatement({
principals: [new iam.AnyPrincipal()],
}));

const user = new iam.User(stack, 'MyUser');
const user = new iam.User(stack, 'MyIamUser');
repo.grantRead(user);
repo.grantPullPush(user);

Expand Down

0 comments on commit 1a3b36d

Please sign in to comment.