Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

S3: additional grant* methods for buckets #591

Merged
merged 8 commits into from
Aug 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down Expand Up @@ -144,6 +144,7 @@
"Version": "1"
},
"Configuration": {
"StackName": "OurStack",
"ActionMode": "CHANGE_SET_REPLACE",
"ChangeSetName": "StagedChangeSet",
"TemplatePath": "SourceArtifact::template.yaml",
Expand All @@ -153,8 +154,7 @@
"PipelineDeployPrepareChangesRoleD28C853C",
"Arn"
]
},
"StackName": "OurStack"
}
},
"InputArtifacts": [
{
Expand Down Expand Up @@ -185,9 +185,9 @@
"Version": "1"
},
"Configuration": {
"StackName": "OurStack",
"ActionMode": "CHANGE_SET_EXECUTE",
"ChangeSetName": "StagedChangeSet",
"StackName": "OurStack"
"ChangeSetName": "StagedChangeSet"
},
"InputArtifacts": [],
"Name": "ExecuteChanges",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down Expand Up @@ -156,6 +156,7 @@
"Version": "1"
},
"Configuration": {
"StackName": "IntegTest-TestActionStack",
"ActionMode": "CHANGE_SET_REPLACE",
"ChangeSetName": "ChangeSetIntegTest",
"TemplatePath": "SourceArtifact::test.yaml",
Expand All @@ -164,8 +165,7 @@
"CfnChangeSetRole6F05F6FC",
"Arn"
]
},
"StackName": "IntegTest-TestActionStack"
}
},
"InputArtifacts": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down Expand Up @@ -291,8 +291,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down Expand Up @@ -464,8 +464,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down Expand Up @@ -530,16 +530,6 @@
"MyTopic86869434": {
"Type": "AWS::SNS::Topic"
},
"MyTopicbenisraeBF3B2D80": {
"Type": "AWS::SNS::Subscription",
"Properties": {
"Endpoint": "benisrae@amazon.com",
"Protocol": "email",
"TopicArn": {
"Ref": "MyTopic86869434"
}
}
},
"MyTopicPolicy12A5EC17": {
"Type": "AWS::SNS::TopicPolicy",
"Properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ new codebuild.PipelineBuildAction(stack, 'CodeBuildAction', {
});

const topic = new sns.Topic(stack, 'MyTopic');
topic.subscribeEmail('benisrae', 'benisrae@amazon.com');

pipeline.onStateChange('OnPipelineStateChange').addTarget(topic, {
textTemplate: 'Pipeline <pipeline> changed state to <state>',
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-lambda/test/inline.expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down
86 changes: 69 additions & 17 deletions packages/@aws-cdk/aws-s3/lib/bucket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,59 @@ export abstract class BucketRef extends cdk.Construct {
}

/**
* Temporary API for granting read permissions for this bucket and it's
* contents to an IAM principal (Role/Group/User).
* Grant read permissions for this bucket and it's contents to an IAM
* principal (Role/Group/User).
*
* If encryption is used, permission to use the key to decrypt the contents
* of the bucket will also be granted to the same principal.
*
* If an encryption key is used, permission to ues the key to decrypt the
* contents of the bucket will also be granted.
* @param identity The principal
* @param objectsKeyPattern Restrict the permission to a certain key pattern (default '*')
*/
public grantRead(identity?: iam.IPrincipal, objectsKeyPattern: any = '*') {
if (!identity) {
return;
}
this.grant(identity, objectsKeyPattern, perms.BUCKET_READ_ACTIONS, perms.KEY_READ_ACTIONS);
this.grant(identity, perms.BUCKET_READ_ACTIONS, perms.KEY_READ_ACTIONS,
this.bucketArn,
this.arnForObjects(objectsKeyPattern));
}

/**
* Grant write permissions to this bucket to an IAM principal.
*
* If encryption is used, permission to use the key to encrypt the contents
* of written files will also be granted to the same principal.
*
* @param identity The principal
* @param objectsKeyPattern Restrict the permission to a certain key pattern (default '*')
*/
public grantWrite(identity?: iam.IPrincipal, objectsKeyPattern: any = '*') {
this.grant(identity, perms.BUCKET_WRITE_ACTIONS, perms.KEY_WRITE_ACTIONS,
this.bucketArn,
this.arnForObjects(objectsKeyPattern));
}

/**
* Grants s3:PutObject* and s3:Abort* permissions for this bucket to an IAM principal.
*
* If encryption is used, permission to use the key to encrypt the contents
* of written files will also be granted to the same principal.
* @param identity The principal
* @param objectsKeyPattern Restrict the permission to a certain key pattern (default '*')
*/
public grantPut(identity?: iam.IPrincipal, objectsKeyPattern: any = '*') {
this.grant(identity, perms.BUCKET_PUT_ACTIONS, perms.KEY_WRITE_ACTIONS,
this.arnForObjects(objectsKeyPattern));
}

/**
* Grants s3:DeleteObject* permission to an IAM pricipal for objects
* in this bucket.
*
* @param identity The principal
* @param objectsKeyPattern Restrict the permission to a certain key pattern (default '*')
*/
public grantDelete(identity?: iam.IPrincipal, objectsKeyPattern: any = '*') {
this.grant(identity, perms.BUCKET_DELETE_ACTIONS, [],
this.arnForObjects(objectsKeyPattern));
}

/**
Expand All @@ -180,21 +222,31 @@ export abstract class BucketRef extends cdk.Construct {
*
* If an encryption key is used, permission to use the key for
* encrypt/decrypt will also be granted.
*
* @param identity The principal
* @param objectsKeyPattern Restrict the permission to a certain key pattern (default '*')
*/
public grantReadWrite(identity?: iam.IPrincipal, objectsKeyPattern: any = '*') {
if (!identity) {
return;
}
const bucketActions = perms.BUCKET_READ_ACTIONS.concat(perms.BUCKET_WRITE_ACTIONS);
const keyActions = perms.KEY_READ_ACTIONS.concat(perms.KEY_WRITE_ACTIONS);
this.grant(identity, objectsKeyPattern, bucketActions, keyActions);
}

private grant(identity: iam.IPrincipal, objectsKeyPattern: any, bucketActions: string[], keyActions: string[]) {
const resources = [
this.grant(identity,
bucketActions,
keyActions,
this.bucketArn,
this.arnForObjects(objectsKeyPattern)
];
this.arnForObjects(objectsKeyPattern));
}

private grant(identity: iam.IPrincipal | undefined,
bucketActions: string[],
keyActions: string[],
resource: cdk.Arn, ...otherResources: cdk.Arn[]) {

if (!identity) {
return;
}

const resources = [ resource, ...otherResources ];

identity.addToPolicy(new cdk.PolicyStatement()
.addResources(...resources)
Expand Down
12 changes: 10 additions & 2 deletions packages/@aws-cdk/aws-s3/lib/perms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,20 @@ export const BUCKET_READ_ACTIONS = [
's3:List*',
];

export const BUCKET_WRITE_ACTIONS = [
export const BUCKET_PUT_ACTIONS = [
's3:PutObject*',
's3:DeleteObject*',
's3:Abort*'
];

export const BUCKET_DELETE_ACTIONS = [
's3:DeleteObject*'
];

export const BUCKET_WRITE_ACTIONS = [
...BUCKET_DELETE_ACTIONS,
...BUCKET_PUT_ACTIONS
];

export const KEY_READ_ACTIONS = [
'kms:Decrypt',
'kms:DescribeKey',
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-s3/test/integ.bucket.expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down
24 changes: 22 additions & 2 deletions packages/@aws-cdk/aws-s3/test/test.bucket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,8 +609,8 @@ export = {
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down Expand Up @@ -763,8 +763,8 @@ export = {
"s3:GetObject*",
"s3:GetBucket*",
"s3:List*",
"s3:PutObject*",
"s3:DeleteObject*",
"s3:PutObject*",
"s3:Abort*"
],
"Effect": "Allow",
Expand Down Expand Up @@ -826,6 +826,26 @@ export = {
},
},

'more grants'(test: Test) {
const stack = new cdk.Stack();
const bucket = new s3.Bucket(stack, 'MyBucket', { encryption: s3.BucketEncryption.Kms });
const putter = new iam.User(stack, 'Putter');
const writer = new iam.User(stack, 'Writer');
const deleter = new iam.User(stack, 'Deleter');

bucket.grantPut(putter);
bucket.grantWrite(writer);
bucket.grantDelete(deleter);

const resources = stack.toCloudFormation().Resources;
const actions = (id: string) => resources[id].Properties.PolicyDocument.Statement[0].Action;

test.deepEqual(actions('WriterDefaultPolicyDC585BCE'), [ 's3:DeleteObject*', 's3:PutObject*', 's3:Abort*' ]);
test.deepEqual(actions('PutterDefaultPolicyAB138DD3'), [ 's3:PutObject*', 's3:Abort*' ]);
test.deepEqual(actions('DeleterDefaultPolicyCD33B8A0'), 's3:DeleteObject*');
test.done();
},

'cross-stack permissions'(test: Test) {
const stackA = new cdk.Stack();
const bucketFromStackA = new s3.Bucket(stackA, 'MyBucket');
Expand Down