Fix typo in recommended vault auth iam policy (#4128)

The resource arn for the `sts:AssumeRole` action is missing a `:` for the region and therefore invalid.
This commit is contained in:
Malte 2018-03-14 08:45:21 +01:00 committed by Jeff Mitchell
parent b3ccf7aac9
commit 26d8b7f095

View File

@ -304,7 +304,7 @@ method.
"Effect": "Allow",
"Action": ["sts:AssumeRole"],
"Resource": [
"arn:aws:iam:<AccountId>:role/<VaultRole>"
"arn:aws:iam::<AccountId>:role/<VaultRole>"
]
}
]