From 26d8b7f095700a9ff7b81a3be1caceb607e506a4 Mon Sep 17 00:00:00 2001 From: Malte Date: Wed, 14 Mar 2018 08:45:21 +0100 Subject: [PATCH] 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. --- website/source/docs/auth/aws.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/auth/aws.html.md b/website/source/docs/auth/aws.html.md index a7cca90826..6152d1a846 100644 --- a/website/source/docs/auth/aws.html.md +++ b/website/source/docs/auth/aws.html.md @@ -304,7 +304,7 @@ method. "Effect": "Allow", "Action": ["sts:AssumeRole"], "Resource": [ - "arn:aws:iam::role/" + "arn:aws:iam:::role/" ] } ]