Skip to content

Commit

Permalink
Update storage_construct.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SavvasDobsonDunavant committed Feb 3, 2025
1 parent f4bb5a8 commit ad94df9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/custom_constructs/storage_construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ def __init__(self, scope: Construct, id: str):
)

# Demo Bucket
self.progress_bucket = s3.Bucket(
self.demo_bucket = s3.Bucket(
self,
"ProgressBucket",
"Demo Bucket",
bucket_name=f"demo-{self.environment}-test",
encryption=s3.BucketEncryption.S3_MANAGED,
bucket_key_enabled=True,
enforce_ssl=True,
block_public_access=s3.BlockPublicAccess.BLOCK_ALL,
object_ownership=s3.ObjectOwnership.BUCKET_OWNER_ENFORCED,
)
cdk.Tags.of(self.progress_bucket).add(
cdk.Tags.of(self.demo_bucket).add(
"savvas:security:s3:public-bucket:exempt",
"false"
)

0 comments on commit ad94df9

Please sign in to comment.