aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc-cloud-aws
diff options
context:
space:
mode:
authorMorten Tokle <mortent@verizonmedia.com>2021-01-28 08:38:59 +0100
committerMorten Tokle <mortent@verizonmedia.com>2021-01-28 08:38:59 +0100
commit2653b93a2d739573a06390c42e478faf4db8b9e9 (patch)
tree2d2887b3f99c343c64a2f49d78a3497b559f30c6 /jdisc-cloud-aws
parentc4fc19d042f965c7fcda0a3fe2a22c8295bd596d (diff)
aws parameter store
Diffstat (limited to 'jdisc-cloud-aws')
-rw-r--r--jdisc-cloud-aws/src/main/java/com/yahoo/vespa/aws/AwsParameterStore.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/jdisc-cloud-aws/src/main/java/com/yahoo/vespa/aws/AwsParameterStore.java b/jdisc-cloud-aws/src/main/java/com/yahoo/vespa/aws/AwsParameterStore.java
new file mode 100644
index 00000000000..cf2a44ba950
--- /dev/null
+++ b/jdisc-cloud-aws/src/main/java/com/yahoo/vespa/aws/AwsParameterStore.java
@@ -0,0 +1,19 @@
+// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+package com.yahoo.vespa.aws;
+
+import com.yahoo.container.jdisc.secretstore.SecretStore;
+
+public class AwsParameterStore implements SecretStore {
+
+
+ @Override
+ public String getSecret(String key) {
+ return null;
+ }
+
+ @Override
+ public String getSecret(String key, int version) {
+ return null;
+ }
+}