github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/avd_docs/aws/msk/AVD-AWS-0073/Terraform.md (about) 1 2 Enable in transit encryption 3 4 ```hcl 5 resource "aws_msk_cluster" "good_example" { 6 encryption_info { 7 encryption_in_transit { 8 client_broker = "TLS" 9 in_cluster = true 10 } 11 } 12 } 13 14 ``` 15 16 #### Remediation Links 17 - https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/msk_cluster#encryption_info-argument-reference 18