summaryrefslogtreecommitdiffstats
path: root/jdisc-cloud-aws
diff options
context:
space:
mode:
authorMorten Tokle <mortent@verizonmedia.com>2021-03-16 10:59:38 +0100
committerMorten Tokle <mortent@verizonmedia.com>2021-03-16 10:59:38 +0100
commit342416e63fdeb11a79d08cbba78ca66ce60c0370 (patch)
tree799d1082bd22b54624490d70c92e7bef530af4d8 /jdisc-cloud-aws
parent1ee94e425c67112bd5af595306830971210a162d (diff)
group -> aws-parameter-store
Diffstat (limited to 'jdisc-cloud-aws')
-rw-r--r--jdisc-cloud-aws/src/main/java/com/yahoo/jdisc/cloud/aws/AwsParameterStore.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jdisc-cloud-aws/src/main/java/com/yahoo/jdisc/cloud/aws/AwsParameterStore.java b/jdisc-cloud-aws/src/main/java/com/yahoo/jdisc/cloud/aws/AwsParameterStore.java
index f2cac68c030..595bb4f6786 100644
--- a/jdisc-cloud-aws/src/main/java/com/yahoo/jdisc/cloud/aws/AwsParameterStore.java
+++ b/jdisc-cloud-aws/src/main/java/com/yahoo/jdisc/cloud/aws/AwsParameterStore.java
@@ -82,7 +82,7 @@ public class AwsParameterStore extends AbstractComponent implements SecretStore
}
private static List<AwsSettings> translateConfig(SecretStoreConfig secretStoreConfig) {
- return secretStoreConfig.groups()
+ return secretStoreConfig.awsParameterStores()
.stream()
.map(config -> new AwsSettings(config.name(), config.role(), config.awsId(), config.externalId(), config.region()))
.collect(Collectors.toList());