summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorOla Aunrønning <olaa@verizonmedia.com>2021-03-05 13:05:17 +0100
committerOla Aunrønning <olaa@verizonmedia.com>2021-03-05 13:08:08 +0100
commita274f9d5b8f24676a576e12ef35423549eea0d56 (patch)
treee24a785b362d2c87cf1f98285c5545b36726f988 /controller-api
parent1acaa2e62aecdda2b4c321ae133654cc1a0316f3 (diff)
Include region and parameter name when validating secret store. Don't inject AwsParameterStore to AwsParameterStoreValidationHandler
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java
index 315665dbffc..ed545dc35d1 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java
@@ -151,6 +151,6 @@ public interface ConfigServer {
void setSuspension(DeploymentId deploymentId, boolean suspend);
/** Validates secret store configuration. */
- String validateSecretStore(DeploymentId deploymentId, TenantSecretStore tenantSecretStore);
+ String validateSecretStore(DeploymentId deploymentId, TenantSecretStore tenantSecretStore, String region, String parameterName);
}