Skip to content

Commit

Permalink
fix: public-read option typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yhortuk committed Jan 22, 2023
1 parent 5a81ab0 commit 7b2c7b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Constructs/BucketConstruct.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ protected function setupBuckets(): self
$bucketRef = ['BucketName' => new TaggedValue('GetAtt', "$bucketStack.Outputs.BucketName"),];
$bucketAccess = [
'private' => 'Private',
'pulic-read' => 'PublicRead'
'public-read' => 'PublicRead'
][Arr::get($bucketDefinition, 'access')] ?? 'Private';

$this->append('Policies', [
Expand Down

0 comments on commit 7b2c7b6

Please sign in to comment.