generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 271
Open
Labels
kind/new-fieldCategorizes issue or PR as related to a new fieldCategorizes issue or PR as related to a new fieldservice/eventbridgeIndicates issues or PRs that are related to eventbridge-controller.Indicates issues or PRs that are related to eventbridge-controller.
Description
Is your feature request related to a problem?
I can't create a resource based policy when creating a service bus
Describe the solution you'd like
When applying the following manifest, it should apply a resource based policy :
apiVersion: eventbridge.services.k8s.aws/v1alpha1
kind: EventBus
metadata:
name: event-bus
namespace: platform
spec:
name: event-bus-dev
policy: |
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowToPutEvents",
"Effect": "Allow",
"Principal": {
"Service": "events.amazonaws.com"
},
"Action": "events:PutEvents",
"Resource": "${EVENT_BUS_ARN}"
}
]
}Metadata
Metadata
Assignees
Labels
kind/new-fieldCategorizes issue or PR as related to a new fieldCategorizes issue or PR as related to a new fieldservice/eventbridgeIndicates issues or PRs that are related to eventbridge-controller.Indicates issues or PRs that are related to eventbridge-controller.