Skip to main content

策略备份

公开策略

image-20221018161518090

完全公开策略:

{
"Version": "2012-10-17",
"Id": "{id}",
"Statement": [
{
"Sid": "{sid}",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:*",
"Resource": "arn:aws:s3:::{xxxxxxxxxxx}/*"
}
]
}

仅公开 output 的策略:

{
"Version": "2012-10-17",
"Id": "{id}",
"Statement": [
{
"Sid": "{sid}",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:*",
"Resource": "arn:aws:s3:::xxxxx/output/*"
}
]
}