Как правильно добавить тег в правило моста событий AWS с помощью бессерверной инфраструктуры
В моем файле serverless.yml определена следующая лямбда-функция. Я успешно создал правило для существующей шины событий и установил лямбда-функцию в качестве цели. Однако я не могу понять, как добавить тег к правилу моста событий.
functions:
function:
handler: src/index.handler
name: ${self:service.name}-${self:service.environment}
runtime: nodejs12.x
role: lambdaRole
timeout: 90
vpc:
securityGroupIds:
- ${ssm:${self:custom.coreAppName}-${self:service.environment}-LambdaSG}
subnetIds:
- ${ssm:${self:custom.coreAppName}-${self:service.environment}-LambdaSubnetA}
- ${ssm:${self:custom.coreAppName}-${self:service.environment}-LambdaSubnetB}
environment:
NOTIFICATIONS_TABLE: ${self:custom.notificationstable}
Environment: ${self:service.environment}
events:
- eventBridge:
eventBus: ${self:custom.eventBridgeName}
pattern:
source:
- chq.aws.health
detail-type:
- AWS Health Event
detail:
service:
- EBS
eventTypeCategory:
- issue
eventTypeCode:
- AWS_EBS_DEGRADED_EBS_VOLUME_PERFORMANCE