From d8c55526ea54a86fa04ce3b99375881d82204f09 Mon Sep 17 00:00:00 2001 From: calvix Date: Fri, 25 Feb 2022 15:19:49 +0100 Subject: [PATCH] fix-aws-role-identity-value (#10) --- CHANGELOG.md | 4 ++++ helm/cluster-aws/templates/_aws_cluster_role_identity.tpl | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3f97ed2..32cafb60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## Fixed + +- Fix aws cluster role identity value reference. + ## [0.1.1] - 2022-02-25 ### Fixed diff --git a/helm/cluster-aws/templates/_aws_cluster_role_identity.tpl b/helm/cluster-aws/templates/_aws_cluster_role_identity.tpl index 73a6dac3..efa195ad 100644 --- a/helm/cluster-aws/templates/_aws_cluster_role_identity.tpl +++ b/helm/cluster-aws/templates/_aws_cluster_role_identity.tpl @@ -10,5 +10,5 @@ spec: list: - {{ $.Release.Namespace }} selector: {} - roleARN: "{{ .Values.awsRoleArn }}" + roleARN: "{{ .Values.aws.roleARN }}" {{- end -}}