File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
dev-aws/kafka-shared-msk/pubsub Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ resource "kafka_acl" "msk_data_keep_read_topic_all" {
2+ resource_name = " *"
3+ resource_type = " Topic"
4+ acl_principal = " User:CN=pubsub/msk-data-keep"
5+ acl_host = " *"
6+ acl_operation = " Read"
7+ acl_permission_type = " Allow"
8+ }
9+
10+ resource "kafka_acl" "msk_data_keep_describe_group_all" {
11+ resource_name = " *"
12+ resource_type = " Group"
13+ acl_principal = " User:CN=pubsub/msk-data-keep"
14+ acl_host = " *"
15+ acl_operation = " Describe"
16+ acl_permission_type = " Allow"
17+ }
18+
19+ # Enable only when we need to restore
20+ #
21+ # resource "kafka_acl" "msk_data_keep_write_topic_all" {
22+ # resource_name = "*"
23+ # resource_type = "Topic"
24+ # acl_principal = "User:CN=pubsub/test-msk-backup-kafka-connect"
25+ # acl_host = "*"
26+ # acl_operation = "Write"
27+ # acl_permission_type = "Allow"
28+ # }
You can’t perform that action at this time.
0 commit comments