Skip to content

Commit

Permalink
s3_bucket - (docs) fix public_access example (#313)
Browse files Browse the repository at this point in the history
* fix public_access example
  • Loading branch information
jam01 authored Apr 5, 2021
1 parent c356dec commit b2e478a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/amazon.aws.s3_bucket_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -627,11 +627,11 @@ Examples
name: mys3bucket
state: present
public_access:
BlockPublicAcls: true
IgnorePublicAcls: true
block_public_acls: true
ignore_public_acls: true
## keys == 'false' can be ommited, undefined keys defaults to 'false'
# BlockPublicPolicy: false
# RestrictPublicBuckets: false
# block_public_policy: false
# restrict_public_buckets: false
# Delete public policy block from bucket
- amazon.aws.s3_bucket:
Expand Down
8 changes: 4 additions & 4 deletions plugins/modules/s3_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@
name: mys3bucket
state: present
public_access:
BlockPublicAcls: true
IgnorePublicAcls: true
block_public_acls: true
ignore_public_acls: true
## keys == 'false' can be ommited, undefined keys defaults to 'false'
# BlockPublicPolicy: false
# RestrictPublicBuckets: false
# block_public_policy: false
# restrict_public_buckets: false
# Delete public policy block from bucket
- amazon.aws.s3_bucket:
Expand Down

0 comments on commit b2e478a

Please sign in to comment.