Open lctnstn opened 3 years ago
Hi @lctnstn I think you have a problem with the yaml
format, eventBridge
and event
should not in the same level.
Bad
stepFunctions:
stateMachines:
sampleMachine:
events:
- eventBridge:
event:
source:
- "aws.workspaces"
detail-type:
- "AWS API Call via CloudTrail"
detail:
eventSource:
- "workspaces.amazonaws.com"
EventName:
- CreateWorkspaces
- CreateTags
- DeleteTags
Good
stepFunctions:
stateMachines:
sampleMachine:
events:
- eventBridge:
event:
source:
- "aws.workspaces"
detail-type:
- "AWS API Call via CloudTrail"
detail:
eventSource:
- "workspaces.amazonaws.com"
EventName:
- CreateWorkspaces
- CreateTags
- DeleteTags
Hello, we had the same issue and it works well, thanks a lot.
The service deploys fine but completely ignores/skips over ccreating EventBridge and CloudWatch event rules.