Skip to content

Commit

Permalink
Merge pull request #5461 from opsmill/wvd-20240115-set-default-value-…
Browse files Browse the repository at this point in the history
…aws-default-acl

Change S3 storage default_acl setting to a default value `private`
  • Loading branch information
wvandeun authored Jan 15, 2025
2 parents 42703f5 + 01578ca commit 3ca8bd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/infrahub/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class S3StorageSettings(BaseSettings):
validation_alias=AliasChoices("INFRAHUB_STORAGE_USE_SSL", "AWS_S3_USE_SSL"),
)
default_acl: str = Field(
default="",
default="private",
alias="AWS_DEFAULT_ACL",
validation_alias=AliasChoices("INFRAHUB_STORAGE_DEFAULT_ACL", "AWS_DEFAULT_ACL"),
)
Expand Down
1 change: 1 addition & 0 deletions changelog/s3-storage-default-acl.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Changed the default value for the s3.default_acl configuration setting to `private`

0 comments on commit 3ca8bd6

Please sign in to comment.