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 = "/" path = "/"
assume_role_policy = <<EOF assume_role_policy = <<EOF
{ {
"Version": "2012-10-17", "Version": "2008-10-17",
"Statement": [ "Statement": [
{ {
"Action": [ "Action": "sts:AssumeRole",
"ec2:Describe*" "Principal": {"AWS": "*"},
], "Effect": "Allow",
"Effect": "Allow", "Sid": ""
"Resource": "*" }
} ]
]
} }
EOF EOF
} }

View File

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