-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(iot-actions): Add the action to put CloudWatch Logs
1. add the action 2. add tests 3. describe to README
- Loading branch information
Showing
8 changed files
with
405 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
packages/@aws-cdk/aws-iot-actions/lib/cloudwatch-logs-action.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import * as iam from '@aws-cdk/aws-iam'; | ||
import * as iot from '@aws-cdk/aws-iot'; | ||
import * as logs from '@aws-cdk/aws-logs'; | ||
import { singletonActionRole } from './private/role'; | ||
|
||
/** | ||
* Configuration properties of an action for CloudWatch Logs. | ||
*/ | ||
export interface CloudwatchLogsActionProps { | ||
/** | ||
* The IAM role that allows access to the CloudWatch log group. | ||
* | ||
* @default a new role will be created | ||
*/ | ||
readonly role?: iam.IRole; | ||
} | ||
|
||
/** | ||
* The action to send data to Amazon CloudWatch Logs | ||
*/ | ||
export class CloudwatchLogsAction implements iot.IAction { | ||
private readonly role?: iam.IRole; | ||
|
||
/** | ||
* @param logGroup The CloudWatch log group to which the action sends data | ||
* @param props Optional properties to not use default | ||
*/ | ||
constructor( | ||
private readonly logGroup: logs.ILogGroup, | ||
props: CloudwatchLogsActionProps = {}, | ||
) { | ||
this.role = props.role; | ||
} | ||
|
||
bind(rule: iot.ITopicRule): iot.ActionConfig { | ||
const role = this.role ?? singletonActionRole(rule); | ||
this.logGroup.grant(role, 'logs:CreateLogStream', 'logs:DescribeLogStreams', 'logs:PutLogEvents'); | ||
|
||
return { | ||
configuration: { | ||
cloudwatchLogs: { | ||
logGroupName: this.logGroup.logGroupName, | ||
roleArn: role.roleArn, | ||
}, | ||
}, | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export * from './cloudwatch-logs-action'; | ||
export * from './lambda-function-action'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import * as iam from '@aws-cdk/aws-iam'; | ||
import { IConstruct, PhysicalName } from '@aws-cdk/core'; | ||
|
||
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main | ||
// eslint-disable-next-line no-duplicate-imports, import/order | ||
import { Construct } from '@aws-cdk/core'; | ||
|
||
/** | ||
* Obtain the Role for the TopicRule | ||
* | ||
* If a role already exists, it will be returned. This ensures that if a rule have multiple | ||
* actions, they will share a role. | ||
* @internal | ||
*/ | ||
export function singletonActionRole(scope: IConstruct): iam.IRole { | ||
const id = 'TopicRuleActionRole'; | ||
const existing = scope.node.tryFindChild(id) as iam.IRole; | ||
if (existing) return existing; | ||
|
||
const role = new iam.Role(scope as Construct, id, { | ||
roleName: PhysicalName.GENERATE_IF_NEEDED, | ||
assumedBy: new iam.ServicePrincipal('iot.amazonaws.com'), | ||
}); | ||
return role; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
202 changes: 202 additions & 0 deletions
202
packages/@aws-cdk/aws-iot-actions/test/cloudwatch-logs/cloudwatch-logs-action.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
import { Template } from '@aws-cdk/assertions'; | ||
import * as iam from '@aws-cdk/aws-iam'; | ||
import * as iot from '@aws-cdk/aws-iot'; | ||
import * as logs from '@aws-cdk/aws-logs'; | ||
import * as cdk from '@aws-cdk/core'; | ||
import * as actions from '../../lib'; | ||
|
||
test('Default cloudwatch logs action', () => { | ||
// GIVEN | ||
const stack = new cdk.Stack(); | ||
const topicRule = new iot.TopicRule(stack, 'MyTopicRule', { | ||
sql: iot.IotSql.fromStringAsVer20160323("SELECT topic(2) as device_id FROM 'device/+/data'"), | ||
}); | ||
const logGroup = new logs.LogGroup(stack, 'MyLogGroup'); | ||
|
||
// WHEN | ||
topicRule.addAction( | ||
new actions.CloudwatchLogsAction(logGroup), | ||
); | ||
|
||
// THEN | ||
Template.fromStack(stack).hasResourceProperties('AWS::IoT::TopicRule', { | ||
TopicRulePayload: { | ||
Actions: [ | ||
{ | ||
CloudwatchLogs: { | ||
LogGroupName: { Ref: 'MyLogGroup5C0DAD85' }, | ||
RoleArn: { | ||
'Fn::GetAtt': [ | ||
'MyTopicRuleTopicRuleActionRoleCE2D05DA', | ||
'Arn', | ||
], | ||
}, | ||
}, | ||
}, | ||
], | ||
}, | ||
}); | ||
|
||
Template.fromStack(stack).hasResourceProperties('AWS::IAM::Role', { | ||
AssumeRolePolicyDocument: { | ||
Statement: [ | ||
{ | ||
Action: 'sts:AssumeRole', | ||
Effect: 'Allow', | ||
Principal: { | ||
Service: 'iot.amazonaws.com', | ||
}, | ||
}, | ||
], | ||
Version: '2012-10-17', | ||
}, | ||
}); | ||
|
||
Template.fromStack(stack).hasResourceProperties('AWS::IAM::Policy', { | ||
PolicyDocument: { | ||
Statement: [ | ||
{ | ||
Action: ['logs:CreateLogStream', 'logs:DescribeLogStreams', 'logs:PutLogEvents'], | ||
Effect: 'Allow', | ||
Resource: { | ||
'Fn::GetAtt': [ | ||
'MyLogGroup5C0DAD85', | ||
'Arn', | ||
], | ||
}, | ||
}, | ||
], | ||
Version: '2012-10-17', | ||
}, | ||
PolicyName: 'MyTopicRuleTopicRuleActionRoleDefaultPolicy54A701F7', | ||
Roles: [ | ||
{ Ref: 'MyTopicRuleTopicRuleActionRoleCE2D05DA' }, | ||
], | ||
}); | ||
}); | ||
|
||
test('can set role', () => { | ||
// GIVEN | ||
const stack = new cdk.Stack(); | ||
const topicRule = new iot.TopicRule(stack, 'MyTopicRule', { | ||
sql: iot.IotSql.fromStringAsVer20160323("SELECT topic(2) as device_id FROM 'device/+/data'"), | ||
}); | ||
const logGroup = new logs.LogGroup(stack, 'MyLogGroup'); | ||
const role = new iam.Role(stack, 'MyRole', { | ||
assumedBy: new iam.ServicePrincipal('iot.amazonaws.com'), | ||
}); | ||
|
||
// WHEN | ||
topicRule.addAction( | ||
new actions.CloudwatchLogsAction(logGroup, { | ||
role, | ||
}), | ||
); | ||
|
||
// THEN | ||
Template.fromStack(stack).hasResourceProperties('AWS::IoT::TopicRule', { | ||
TopicRulePayload: { | ||
Actions: [ | ||
{ | ||
CloudwatchLogs: { | ||
LogGroupName: { Ref: 'MyLogGroup5C0DAD85' }, | ||
RoleArn: { | ||
'Fn::GetAtt': [ | ||
'MyRoleF48FFE04', | ||
'Arn', | ||
], | ||
}, | ||
}, | ||
}, | ||
], | ||
}, | ||
}); | ||
}); | ||
|
||
test('The specified role is added a policy needed for sending data to logs', () => { | ||
// GIVEN | ||
const stack = new cdk.Stack(); | ||
const topicRule = new iot.TopicRule(stack, 'MyTopicRule', { | ||
sql: iot.IotSql.fromStringAsVer20160323("SELECT topic(2) as device_id FROM 'device/+/data'"), | ||
}); | ||
const logGroup = new logs.LogGroup(stack, 'MyLogGroup'); | ||
const role = new iam.Role(stack, 'MyRole', { | ||
assumedBy: new iam.ServicePrincipal('iot.amazonaws.com'), | ||
}); | ||
|
||
// WHEN | ||
topicRule.addAction( | ||
new actions.CloudwatchLogsAction(logGroup, { | ||
role, | ||
}), | ||
); | ||
|
||
// THEN | ||
Template.fromStack(stack).hasResourceProperties('AWS::IAM::Policy', { | ||
PolicyDocument: { | ||
Statement: [ | ||
{ | ||
Action: ['logs:CreateLogStream', 'logs:DescribeLogStreams', 'logs:PutLogEvents'], | ||
Effect: 'Allow', | ||
Resource: { | ||
'Fn::GetAtt': [ | ||
'MyLogGroup5C0DAD85', | ||
'Arn', | ||
], | ||
}, | ||
}, | ||
], | ||
Version: '2012-10-17', | ||
}, | ||
PolicyName: 'MyRoleDefaultPolicyA36BE1DD', | ||
Roles: [ | ||
{ Ref: 'MyRoleF48FFE04' }, | ||
], | ||
}); | ||
}); | ||
|
||
|
||
test('When multiple actions are omitted role property, the actions use same one role', () => { | ||
// GIVEN | ||
// GIVEN | ||
const stack = new cdk.Stack(); | ||
const topicRule = new iot.TopicRule(stack, 'MyTopicRule', { | ||
sql: iot.IotSql.fromStringAsVer20160323("SELECT topic(2) as device_id FROM 'device/+/data'"), | ||
}); | ||
const logGroup1 = new logs.LogGroup(stack, 'MyLogGroup1'); | ||
const logGroup2 = new logs.LogGroup(stack, 'MyLogGroup2'); | ||
|
||
// WHEN | ||
topicRule.addAction(new actions.CloudwatchLogsAction(logGroup1)); | ||
topicRule.addAction(new actions.CloudwatchLogsAction(logGroup2)); | ||
|
||
// THEN | ||
Template.fromStack(stack).hasResourceProperties('AWS::IoT::TopicRule', { | ||
TopicRulePayload: { | ||
Actions: [ | ||
{ | ||
CloudwatchLogs: { | ||
LogGroupName: { Ref: 'MyLogGroup14A6E382A' }, | ||
RoleArn: { | ||
'Fn::GetAtt': [ | ||
'MyTopicRuleTopicRuleActionRoleCE2D05DA', | ||
'Arn', | ||
], | ||
}, | ||
}, | ||
}, | ||
{ | ||
CloudwatchLogs: { | ||
LogGroupName: { Ref: 'MyLogGroup279D6359D' }, | ||
RoleArn: { | ||
'Fn::GetAtt': [ | ||
'MyTopicRuleTopicRuleActionRoleCE2D05DA', | ||
'Arn', | ||
], | ||
}, | ||
}, | ||
}, | ||
], | ||
}, | ||
}); | ||
}); |
Oops, something went wrong.