github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/avd_docs/aws/rds/AVD-AWS-0180/Terraform.md (about) 1 2 Remove the public endpoint from the RDS instance' 3 4 ```hcl 5 resource "aws_db_instance" "good_example" { 6 publicly_accessible = false 7 } 8 9 ``` 10 11