fix minor typo in README that makes copy/pasting difficult

Created on 7 November 2024, 6 months ago

Problem/Motivation

AWS S3 privileges has a small typo that results in invalid JSON when copy/pasting in AWS Policy

Need comma after permission

      "Action": [
          "s3:ListBucket",
          "s3:ListBucketVersions",
          "s3:PutObject",
          "s3:GetObject",
          "s3:DeleteObjectVersion",
          "s3:DeleteObject",
          "s3:GetObjectVersion"
          "s3:GetObjectAcl",
          "s3:PutObjectAcl",
      ]

needs to be

      "Action": [
          "s3:ListBucket",
          "s3:ListBucketVersions",
          "s3:PutObject",
          "s3:GetObject",
          "s3:DeleteObjectVersion",
          "s3:DeleteObject",
          "s3:GetObjectVersion"<strong>,</strong>
          "s3:GetObjectAcl",
          "s3:PutObjectAcl",
      ]
πŸ› Bug report
Status

Active

Version

3.6

Component

Documentation

Created by

πŸ‡ΊπŸ‡ΈUnited States thhafner Chicago, IL

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024