From 34d7e849d63968126c040e0e38d2304da1a6365a Mon Sep 17 00:00:00 2001 From: Daniel Morris Date: Sat, 3 Jun 2023 18:50:40 +0100 Subject: [PATCH] Don't indent sequence values in the README --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b761d8a..c8743bf 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ The following demonstrates how to use GitHub Actions once the Terraform module has been applied to your AWS account. The action receives a JSON Web Token (JWT) from the GitHub OIDC provider and then requests an access token from AWS. + ```yaml jobs: caller-identity: @@ -50,14 +51,14 @@ jobs: id-token: write runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v3 - - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v2 - with: - aws-region: ${{ secrets.AWS_REGION }} - role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/github - - run: aws sts get-caller-identity + - name: Checkout code + uses: actions/checkout@v3 + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v2 + with: + aws-region: ${{ secrets.AWS_REGION }} + role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/github + - run: aws sts get-caller-identity ```