aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2023-09-28 16:04:42 +0200
committerjonmv <venstad@gmail.com>2023-09-28 16:04:42 +0200
commita1bd65e6be24f8073c6a5cc826d291a3571ee676 (patch)
tree3fe32ce362992e402ef0e7459468489df1a60611 /controller-api
parentd10c4a0aebadf5ffb73218b8444d489a79b159ae (diff)
Read active token fingerprints from configserver
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/ConfigServer.java3
1 files changed, 3 insertions, 0 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 19bfc84db7a..9b15311622e 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
@@ -158,4 +158,7 @@ public interface ConfigServer {
/** Validates secret store configuration. */
String validateSecretStore(DeploymentId deploymentId, TenantSecretStore tenantSecretStore, String region, String parameterName);
+ /** Fingerprints of active data plane tokens, per healthy host with token auth, in the given deployment. */
+ Map<String, List<String>> activeTokenFingerprints(DeploymentId deploymentId);
+
}