Audit logging can be turned on by adding a parameter group to the Neptune cluster, then setting the neptune_enable_audit_log parameter to 1 (On).
Notes:
The parameter group must be associated with the cluster, not the instance, in order to enable audit logging.
I've manually (via the AWS Console, not Terraform) turned on audit logs.
The default parameter group associated with both clusters and instances is not modifiable. You must create a new parameter group, then go to the cluster/instance in order to do the update.
In order for the update to take effect it seems that you have to reboot the Neptune instance.
Our current Terraform code does not turn on AWS audit logs:
https://docs.aws.amazon.com/neptune/latest/userguide/auditing.html
Audit logging can be turned on by adding a parameter group to the Neptune cluster, then setting the
neptune_enable_audit_log
parameter to1 (On)
.Notes: