Skip to content

Commit

Permalink
fix: enforce ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
kukushking committed Sep 30, 2024
1 parent 5cb7a4d commit cadae07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions test_infra/stacks/base_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs: str) -> None:
),
],
versioned=True,
enforce_ssl=True,
)
self.bucket_access_point = s3.CfnAccessPoint(
self,
Expand Down
1 change: 1 addition & 0 deletions test_infra/stacks/glueray_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def __init__(
"Script Bucket",
block_public_access=s3.BlockPublicAccess.BLOCK_ALL,
removal_policy=RemovalPolicy.DESTROY,
enforce_ssl=True,
)

self.athena_workgroup = athena.CfnWorkGroup(
Expand Down

0 comments on commit cadae07

Please sign in to comment.