Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions hdk/cl/examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ The output of this command includes two identifiers that refer to your AFI:

#### Method 2: During F1 preview and before AWS EC2 CLI action `create-fpga-image` is available

Add a policy to the created S3 bucket granting [read/write permissions](http://docs.aws.amazon.com/AmazonS3/latest/dev/example-walkthroughs-managing-access-example2.html) to our team's account (Account ID: 682510182675).
Add a policy to the created S3 bucket granting [read/write permissions](http://docs.aws.amazon.com/AmazonS3/latest/dev/example-walkthroughs-managing-access-example2.html) to our team's account (Account ID: 371834676912).
A sample policy is shown below.

{
Expand All @@ -129,7 +129,7 @@ A sample policy is shown below.
"Sid": "Bucket level permissions",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::682510182675:root"
"AWS": "arn:aws:iam::371834676912:root"
},
"Action": [
"s3:ListBucket"
Expand All @@ -140,7 +140,7 @@ A sample policy is shown below.
"Sid": "Object read permissions",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::682510182675:root"
"AWS": "arn:aws:iam::371834676912:root"
},
"Action": [
"s3:GetObject"
Expand All @@ -151,7 +151,7 @@ A sample policy is shown below.
"Sid": "Folder write permissions",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::682510182675:root"
"AWS": "arn:aws:iam::371834676912:root"
},
"Action": [
"s3:PutObject"
Expand Down