Difference between revisions of "Aws s3 bucket public access block"

From wikieduonline
Jump to navigation Jump to search
Line 11: Line 11:
 
  resource "aws_s3_bucket_public_access_block" "example" {
 
  resource "aws_s3_bucket_public_access_block" "example" {
 
   bucket = aws_s3_bucket.example.id
 
   bucket = aws_s3_bucket.example.id
 
+
   block_public_acls      = true
+
   [[block_public_acls]]       = true
   block_public_policy    = true
+
   [[block_public_policy]]     = true
   ignore_public_acls      = true
+
   [[ignore_public_acls]]     = true
   restrict_public_buckets = true
+
   [[restrict_public_buckets]] = true
 
  }
 
  }
 
 
  
 
== See also ==
 
== See also ==

Revision as of 03:31, 6 June 2024

Advertising: