From 19c6dcecbcd7e2590b8e4ed7ca98690ae413b102 Mon Sep 17 00:00:00 2001 From: Siggi Skulason Date: Mon, 29 Nov 2021 15:25:08 +0000 Subject: [PATCH] feat(snap): add additional tokens for app-service-configurable profiles (#3825) * feat(snap): add additional tokens for app-service-configurable profiles The external-mqtt-trigger and app-push-to-core profiles are used by the TAF integration tests. This commit enables those profiles by creating tokens for them and making the tokens available for the edgex-app-service-configurable snap. Signed-off-by: Siggi Skulason (cherry picked from commit 23881e65786e6db054b8e59a7c23de27e126c89d) --- snap/local/hooks/cmd/install/install.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/snap/local/hooks/cmd/install/install.go b/snap/local/hooks/cmd/install/install.go index d512e19b84..d6e447649b 100644 --- a/snap/local/hooks/cmd/install/install.go +++ b/snap/local/hooks/cmd/install/install.go @@ -42,6 +42,8 @@ var secretStoreTokens = []string{ "app-rules-engine", "app-http-export", "app-mqtt-export", + "app-external-mqtt-trigger", + "app-push-to-core", "app-rfid-llrp-inventory", "application-service", "device-camera", @@ -61,6 +63,8 @@ var secretStoreKnownSecrets = []string{ "redisdb[app-rules-engine]", "redisdb[app-http-export]", "redisdb[app-mqtt-export]", + "redisdb[app-external-mqtt-trigger]", + "redisdb[app-push-to-core]", "redisdb[app-rfid-llrp-inventory]", "redisdb[application-service]", "redisdb[device-rest]",