Skip to content

Commit

Permalink
Ensure role ARN is added to secret if it is available
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchcrab committed Nov 11, 2024
1 parent 1cf50cf commit c255736
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Ensure role ARN is added to secret if it is available.

## [0.10.0] - 2024-10-16

### Added
Expand Down
3 changes: 3 additions & 0 deletions helm/dns-operator-route53/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ stringData:
[default]
aws_access_key_id: {{ .Values.aws.accessKeyID | quote }}
aws_secret_access_key: {{ .Values.aws.secretAccessKey | quote }}
{{- if .Values.aws.roleARN }}
roleARN: {{ .Values.aws.roleARN | quote }}
{{- end }}
kind: Secret
metadata:
labels:
Expand Down

0 comments on commit c255736

Please sign in to comment.