Skip to content

Commit

Permalink
Allow bucket access for auditing (#656)
Browse files Browse the repository at this point in the history
* Allow bucket access for auditing

* Update vpc.tf

* Update vpc.tf
  • Loading branch information
QuentinBisson authored Oct 5, 2022
1 parent 5052465 commit 900c5ff
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/aws/vpc/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ EOF
"Action": "*",
"Effect": "Allow",
"Resource": "arn:${var.arn_region}:s3:::*-g8s-*"
},
{
"Sid": "Giantswarm-Audit-Rule",
"Principal": "*",
"Action": "*",
"Effect": "Allow",
"Resource": "arn:${var.arn_region}:s3:::*-giantswarm-audit-logs*/*"
}
]
}
Expand Down

0 comments on commit 900c5ff

Please sign in to comment.