From a7e7f7fdd2a9d38921476d57f305c9cd4459a556 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Mon, 18 Sep 2017 11:40:41 +0200 Subject: Avoid storing the password in the configuration The password (or any other secret), is now cached in the client process (in-memory only), and delivered to the resource via command. The resource avoids doing any operations against the source until the secret is available. --- common/commands/secret.fbs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 common/commands/secret.fbs (limited to 'common/commands/secret.fbs') diff --git a/common/commands/secret.fbs b/common/commands/secret.fbs new file mode 100644 index 0000000..5bb2246 --- /dev/null +++ b/common/commands/secret.fbs @@ -0,0 +1,7 @@ +namespace Sink.Commands; + +table Secret { + secret: string; +} + +root_type Secret; -- cgit v1.2.3