File tree 1 file changed +36
-0
lines changed
quick-start/prerequisites/permissions
1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,42 @@ KAFKA_CLUSTERS_0_PROPERTIES_SASL_JAAS_CONFIG='software.amazon.msk.auth.iam.IAMLo
11
11
KAFKA_CLUSTERS_0_PROPERTIES_SASL_CLIENT_CALLBACK_HANDLER_CLASS='software.amazon.msk.auth.iam.IAMClientCallbackHandler'
12
12
```
13
13
14
+ Example ECS service configuration:
15
+ ``` typescript
16
+ environment : [
17
+ {
18
+ name: " KAFKA_CLUSTERS_0_NAME" ,
19
+ value: config .mskClusterName
20
+ },
21
+ {
22
+ name: " KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS" ,
23
+ value: config .mskBootstrapServers
24
+ },
25
+ {
26
+ name: " KAFKA_CLUSTERS_0_DISABLELOGDIRSCOLLECTION" ,
27
+ value: " true"
28
+ },
29
+ {
30
+ name: " KAFKA_CLUSTERS_0_PROPERTIES_SECURITY_PROTOCOL" ,
31
+ value: " SASL_SSL"
32
+ },
33
+ {
34
+ name: " KAFKA_CLUSTERS_0_PROPERTIES_SASL_MECHANISM" ,
35
+ value: " AWS_MSK_IAM"
36
+ },
37
+ {
38
+ name: " KAFKA_CLUSTERS_0_PROPERTIES_SASL_CLIENT_CALLBACK_HANDLER_CLASS" ,
39
+ value: " software.amazon.msk.auth.iam.IAMClientCallbackHandler"
40
+ },
41
+ {
42
+ name: " KAFKA_CLUSTERS_0_PROPERTIES_SASL_JAAS_CONFIG" ,
43
+ value: " software.amazon.msk.auth.iam.IAMLoginModule required awsDebugCreds=true;"
44
+ },
45
+ ],
46
+ ```
47
+
48
+
49
+
14
50
### Creating an instance
15
51
16
52
1 . Go to the MSK page
You can’t perform that action at this time.
0 commit comments