AWS neptune documentation change
Summary
Added JSON IAM policy example for Elasticsearch access permissions
Security assessment
Demonstrates security configuration for granting search access but doesn't address a specific vulnerability
Diff
diff --git a/neptune/latest/userguide/full-text-search-fgac.md b/neptune/latest/userguide/full-text-search-fgac.md index f1fc653f9..d3b029768 100644 --- a//neptune/latest/userguide/full-text-search-fgac.md +++ b//neptune/latest/userguide/full-text-search-fgac.md @@ -10,0 +11,24 @@ The IAM entity (User or Role) used for connecting to the Neptune database should +JSON + + +**** + + + + { + "Version":"2012-10-17", + "Statement": [ + { + "Sid": "AllowFullTextSearchAccess", + "Effect": "Allow", + "Principal": { + "AWS": "arn:aws:iam::111122223333:root" + }, + "Action": "es:*", + "Resource": "arn:aws:es:us-east-1:111122223333:domain/domain-name/*" + } + ] + } + + +