Terraform data source: aws iam policy document
(Redirected from Data.aws iam policy document)
Jump to navigation
Jump to search
aws_iam_policy_document (tf.io)
Examples[edit]
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[edit]
- Terraform resource:
aws_iam_policy aws_iam_roleaws_iam_role_policy_attachmentPublicReadGetObject- aws_lambda_function
- aws_cognito_user_group
- aws:PrincipalType
See also[edit]
Advertising: