Skip to content

Commit

Permalink
Fix vpce policy to make etcd backups exporter work on vault VMs. (#720)
Browse files Browse the repository at this point in the history
  • Loading branch information
whites11 authored Jul 4, 2023
1 parent 9b525b2 commit 916bec8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- nginx-ingress-controller: Improve requests and autoscaling. ([#715](https://github.com/giantswarm/giantnetes-terraform/pull/715))

### Fixed

- [AWS] Fix vpce policy to make etcd backups exporter work on vault VMs.

## [14.16.0] - 2023-06-21

### Changed
Expand Down
2 changes: 1 addition & 1 deletion modules/aws/vpc/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ EOF
"Principal": "*",
"Action": "*",
"Effect": "Allow",
"Resource": "arn:${var.arn_region}:s3:::etcd-backups.giantswarm.io/*"
"Resource": ["arn:${var.arn_region}:s3:::etcd-backups.giantswarm.io/*", "arn:${var.arn_region}:s3:::etcd-backups.giantswarm.io"]
},
{
"Sid": "CAPA",
Expand Down

0 comments on commit 916bec8

Please sign in to comment.