From ef1619fafb6e0bfb64c2b658d3f4c58e28b0dec1 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Thu, 22 Sep 2022 21:00:54 +0300 Subject: [PATCH] docs: Add credentials page --- packages/docs/pages/.vitepress/config.js | 2 +- packages/docs/pages/advanced/credentials.md | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 packages/docs/pages/advanced/credentials.md diff --git a/packages/docs/pages/.vitepress/config.js b/packages/docs/pages/.vitepress/config.js index 7733d6f1..9fa861b2 100644 --- a/packages/docs/pages/.vitepress/config.js +++ b/packages/docs/pages/.vitepress/config.js @@ -68,7 +68,7 @@ export default defineConfig({ collapsible: true, items: [ { text: 'Configuration', link: '/advanced/configuration' }, - { text: 'Credentials', link: '/introduction' }, + { text: 'Credentials', link: '/advanced/credentials' }, { text: 'Telemetry', link: '/advanced/telemetry' }, ], }, diff --git a/packages/docs/pages/advanced/credentials.md b/packages/docs/pages/advanced/credentials.md new file mode 100644 index 00000000..7a1a6d24 --- /dev/null +++ b/packages/docs/pages/advanced/credentials.md @@ -0,0 +1,9 @@ +# Credentials + +We need to store your credentials in order to automatically communicate with third-party services to fetch and send data when you have connections. It's the nature of our software and how automation works, but we take extra measures to keep your third-party credentials safe and secure. + +Automatisch uses AES specification to encrypt and decrypt your credentials of third-party services. The Advanced Encryption Standard (AES) is a U.S. Federal Information Processing Standard (FIPS). It was selected after a 5-year process where 15 competing designs were evaluated. AES is now used worldwide to protect sensitive information. + +:::danger +Please be careful with the `ENCRYPTION_KEY` variable. It is used to encrypt your credentials from third-party services. If you change it, you will not be able to access your connections and thus, your existing flows and connections will be useless. +:::