Skip to content

Commit

Permalink
fix: add missing comma to policy.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pselliotc committed Jul 24, 2024
1 parent ba8e56a commit e391b55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::{{ .Values.aws.resourcePrefix }}{{ .Values.stackId }}",
"arn:aws:s3:::{{ .Values.aws.resourcePrefix }}{{ .Values.stackId }}/*"
"arn:aws:s3:::{{ .Values.aws.resourcePrefix }}{{ .Values.stackId }}/*",
"arn:aws:s3:::{{.Values.aws.s3Backups.bucketName}}",
"arn:aws:s3:::{{.Values.aws.s3Backups.bucketName}}/{{.Values.aws.resourcePrefix}}{{.Values.stackId}}/*"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ spec:
command: ["bash", "/stegosweep.sh"]
env:
- name: S3_BUCKET_NAME
value: {{.Values.aws.s3Backups.bucketName}}
value: "{{ .Values.aws.s3Backups.bucketName }}"
- name: S3_PREFIX
value: "{{.Values.aws.resourcePrefix}}{{.Values.stackId}}/stegostore"
value: "{{ .Values.aws.resourcePrefix }}{{ .Values.stackId }}/stegostore"
- name: DAYS_RETENTION_DAILY
value: {{ .Values.stegosweep.daysRetentionDaily | quote }}
- name: DAYS_RETENTION_HOURLY
Expand Down

0 comments on commit e391b55

Please sign in to comment.