Skip to content

Commit 9d2e21f

Browse files
committed
fix: copy paste naming error
1 parent 9fd0795 commit 9d2e21f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/cdkConstructs/src/constructs/StateMachine.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export class ExpressStateMachine extends Construct {
119119

120120
if (addSplunkSubscriptionFilter) {
121121
if (splunkDeliveryStream) {
122-
new CfnSubscriptionFilter(this, "LambdaLogsSplunkSubscriptionFilter", {
122+
new CfnSubscriptionFilter(this, "StateMachineLogsSplunkSubscriptionFilter", {
123123
destinationArn: splunkDeliveryStream.attrArn,
124124
filterPattern: "",
125125
logGroupName: logGroup.logGroupName,
@@ -128,7 +128,7 @@ export class ExpressStateMachine extends Construct {
128128
} else {
129129
const splunkDeliveryStreamImport = Stream.fromStreamArn(
130130
this, "SplunkDeliveryStream", LAMBDA_RESOURCES.SplunkDeliveryStream)
131-
new CfnSubscriptionFilter(this, "LambdaLogsSplunkSubscriptionFilter", {
131+
new CfnSubscriptionFilter(this, "StateMachineLogsSplunkSubscriptionFilter", {
132132
destinationArn: splunkDeliveryStreamImport.streamArn,
133133
filterPattern: "",
134134
logGroupName: logGroup.logGroupName,

0 commit comments

Comments
 (0)