summaryrefslogtreecommitdiffstats
path: root/jdisc-cloud-aws
diff options
context:
space:
mode:
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;
+ }
+}