Skip to content

Commit

Permalink
remove leading space
Browse files Browse the repository at this point in the history
Signed-off-by: Clément Blaise <[email protected]>
  • Loading branch information
clementblaise committed Sep 20, 2024
1 parent 098122a commit 22a928b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions example/aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ the policy based on your needs.
Apply the policy using the AWS command-line command:
```bash
aws iam create-policy \
--policy-name IAMRoleLister \
--policy-document \
--policy-name IAMRoleLister \
--policy-document \
'{
"Version": "2012-10-17",
"Statement": [
Expand Down Expand Up @@ -65,8 +65,8 @@ Define the trust policy to allow the Hub account (000000000000) to AssumeRole on

```bash
aws iam create-role \
--role-name eks-test-assume-role \
--assume-role-policy-document \
--role-name eks-test-assume-role \
--assume-role-policy-document \
'{
"Version": "2012-10-17",
"Statement": [
Expand Down Expand Up @@ -112,8 +112,8 @@ Attach the IAMRoleLister policy on the role

```bash
aws iam attach-role-policy \
--policy-arn arn:aws:iam::000000000001:policy/IAMRoleLister \
--role-name eks-test-assume-role
--policy-arn arn:aws:iam::000000000001:policy/IAMRoleLister \
--role-name eks-test-assume-role
```

## Usage
Expand Down

0 comments on commit 22a928b

Please sign in to comment.