bsmsapp/terraform/modules/s3/datasources.tf

17 lines
453 B
HCL

# ---------------------------------------------------------------------------
# Amazon S3 datasources
# ---------------------------------------------------------------------------
data "aws_iam_policy_document" "this" {
statement {
sid = "PublicReadGetObject"
effect = "Allow"
actions = ["s3:GetObject"]
principals {
type = "AWS"
identifiers = ["*"]
}
resources = ["${aws_s3_bucket.this.arn}/*"]
}
}