Skip to content

Commit c7ae618

Browse files
a0sHaarolean
andauthored
Example ECS working configuration (#36)
Co-authored-by: Roman Zabaluev <[email protected]>
1 parent b08e001 commit c7ae618

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

quick-start/prerequisites/permissions/msk-+serverless-setup.md

+36
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,42 @@ KAFKA_CLUSTERS_0_PROPERTIES_SASL_JAAS_CONFIG='software.amazon.msk.auth.iam.IAMLo
1111
KAFKA_CLUSTERS_0_PROPERTIES_SASL_CLIENT_CALLBACK_HANDLER_CLASS='software.amazon.msk.auth.iam.IAMClientCallbackHandler'
1212
```
1313

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+
1450
### Creating an instance
1551

1652
1. Go to the MSK page

0 commit comments

Comments
 (0)