docs: Fix IAM assume_role_policy examples

This commit is contained in:
Radek Simko 2015-06-01 13:29:21 +01:00
parent 7430fd5a76
commit 40a582170a
2 changed files with 18 additions and 20 deletions

View File

@ -23,16 +23,15 @@ resource "aws_iam_role" "role" {
path = "/"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"ec2:Describe*"
],
"Effect": "Allow",
"Resource": "*"
}
]
"Version": "2008-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {"AWS": "*"},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}

View File

@ -18,16 +18,15 @@ resource "aws_iam_role_policy" "test_policy" {
role = "${aws_iam_role.test_role.id}"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"ec2:Describe*"
],
"Effect": "Allow",
"Resource": "*"
}
]
"Version": "2008-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {"AWS": "*"},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}