Difference between revisions of "Terraform data source: aws iam policy document"

From wikieduonline
Jump to navigation Jump to search
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
* https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document
  
 +
== Examples ==
 +
{{aws s3 bucket policy example}}
  
 +
== Related ==
 +
* Terraform resource: <code>[[aws_iam_policy]]</code>
 +
* <code>[[aws_iam_role]]</code>
 +
* <code>[[aws_iam_role_policy_attachment]]</code>
 +
* <code>[[PublicReadGetObject]]</code>
  
 
== See also ==
 
== See also ==
* {{terraform aws resources}}
 
 
* {{terraform aws data sources}}
 
* {{terraform aws data sources}}
 +
* {{tf s3}}
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]

Revision as of 09:28, 12 June 2024

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}/*",
   ]
 }
}

Related

See also

Advertising: