Unverified Commit 03d85d08 authored by aphorise's avatar aphorise Committed by GitHub
Browse files

Overtabed example corrected. (#8633)

Corrected code snippet to be copy paste ready (& properly terminating).
Showing with 11 additions and 12 deletions
+11 -12
......@@ -105,18 +105,17 @@ management tool.
policy_arns=arn:aws:iam::aws:policy/AmazonEC2ReadOnlyAccess,arn:aws:iam::aws:policy/IAMReadOnlyAccess \
credential_type=iam_user \
policy_document=-<<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ec2:*",
"Resource": "*"
}
]
}
EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ec2:*",
"Resource": "*"
}
]
}
EOF
```
For more information on IAM policies, please see the
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment