Difference between revisions of "S3:ListBucket"
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
== See also == | == See also == | ||
− | * {{S3}} | + | * {{S3 IAM}} |
[[Category:AWS]] | [[Category:AWS]] |
Revision as of 09:28, 14 July 2023
s3:ListAllMyBuckets
Examples
resource "aws_s3_bucket" "example" { bucket = "my-tf-test-bucket" } resource "aws_s3_bucket_policy" "allow_access_from_another_account" { bucket = aws_s3_bucket.example.id policy = data.aws_iam_policy_document.allow_access_from_another_account.json } data "aws_iam_policy_document" "allow_access_from_another_account" { statement { principals { type = "AWS" identifiers = ["123456789012"] } actions = [ "s3:GetObject", "s3:ListBucket", ] resources = [ aws_s3_bucket.example.arn, "${aws_s3_bucket.example.arn}/*", ] } }
See also
Advertising: