Secure connectivity patterns for Amazon MSK Serverless - Cross account cross region setup
This blog post provide a solution for secure connectivity pasterns for MSK Serverless cross account/cross region access in a multi-account multi-region environment. The solution facilitates having multiple MSK Serverless clusters in each region, so long as, on a per region bases, these clusters are centralized in one MSK Serverless service VPC. Once configured Kafka clients can access any of your clusters in any region, from any region, and from on premises, conditioned having sufficient credentials.

- We are going to use the technique described in option three in the blog post, the "Resolver rules and AWS Resource Access Manager" option. We will repeat the setup in every region we have MSK Serverless Clusters. This will cover connectivity within each region but will run short on cross regional access.
- Each remote region will have its own clusters that are centralized in one VPC per remote region, with a similar configuration as we configured is the step before for the local region. We will also create resolver endpoints and rules in the same fashion as we did in the local region.
- For cross region access we will add a resolver rule in each local region, one for each of the remote region added. The resolver rule will use the same outbound resolver endpoint in the local region, no need to add a new one, and will forward name resolution of the foreign region MSK serverless domain to the Inbound resolver endpoint IPs of the remote region, located within the remote region MSK Serverless centralized VPC. i.e. if the remote region is us-west-2, at the local region we will forward name resolution for
*.kafka-serverless.us-``east-2``.
amazonaws.com
to the Inbound resolver endpoint IPs of the remote region, us-west-2, within the MSK Serverless VPC. - The same logic can be applied in a hybrid DNS situation where you have on premises clients coming through Direct Connect or VPN to access your MSK clusters across all regions. We will just need to add to the on premises DNS a forwarding rule per region directing
kafka.serverless.region
domain to the Inbound resolver endpoint for that specific region within the MSK Serverless VPC. i.e.
*.kafka-serverless.us-``east-2``.
amazonaws.com
point to the inbound resolver endpoint of useast-2 within the MSK Serverless VPC, and*.kafka-serverless.us-``west-2``.
amazonaws.com
point to the inbound resolver endpoint of us-west-2- If you have multiple environments. i.e. Prod/Dev/Test, each environment DNS resolution and clusters will need to remain separate. i.e. Dev / Test/ Prod
- For each environment, and per region, you will need to create a centralized MSK service VPC that combines all your clusters within that region. You can have multiple clusters, but you can not have more than one MSK Servelress service VPC within the same region.
- Clients can be in same account, different accounts, different VPCs , and in different regions as needed, or even on premises. That is as long as we maintain on a per environment and region bases a centralized VPC with all the MSK Sererless clusters and have private connectivity (VPC peering, Transit Gateways, VPN, and/or Direct Connect)
Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.