Skip to content
This repository was archived by the owner on Jan 19, 2022. It is now read-only.

Commit 9a171f3

Browse files
Document required IAM permissions for RDS. (#752)
1 parent a28e059 commit 9a171f3

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

docs/src/main/asciidoc/rds.adoc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,3 +383,28 @@ public class SampleService {
383383
The database tag `aws:cloudformation:aws:cloudformation:stack-name` is a default tag that is created if the
384384
database is configured using CloudFormation.
385385
====
386+
387+
=== IAM Permissions
388+
Following IAM permissions are required by Spring Cloud AWS:
389+
390+
[cols="2"]
391+
|===
392+
| Describe database instances
393+
| `rds:DescribeDBInstances`
394+
395+
|===
396+
397+
Sample IAM policy granting access to RDS:
398+
399+
[source,json,indent=0]
400+
----
401+
{
402+
"Version": "2012-10-17",
403+
"Statement": [
404+
{
405+
"Effect": "Allow",
406+
"Action": "rds:DescribeDBInstances",
407+
"Resource": "db-arn"
408+
},
409+
}
410+
----

0 commit comments

Comments
 (0)