github.com/aquasecurity/trivy-iac@v0.8.1-0.20240127024015-3d8e412cf0ab/avd_docs/aws/neptune/AVD-AWS-0076/Terraform.md (about)

     1  
     2  Enable encryption of Neptune storage
     3  
     4  ```hcl
     5   resource "aws_neptune_cluster" "good_example" {
     6     cluster_identifier                  = "neptune-cluster-demo"
     7     engine                              = "neptune"
     8     backup_retention_period             = 5
     9     preferred_backup_window             = "07:00-09:00"
    10     skip_final_snapshot                 = true
    11     iam_database_authentication_enabled = true
    12     apply_immediately                   = true
    13     storage_encrypted                   = true
    14     kms_key_arn                         = aws_kms_key.example.arn
    15   }
    16   
    17  ```
    18  
    19  #### Remediation Links
    20   - https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/neptune_cluster#storage_encrypted
    21