Added akeyless api integration

This commit is contained in:
Mike Conrad
2023-08-31 17:14:13 -04:00
parent e0d4cb41b0
commit 80737a2927
9 changed files with 95 additions and 9 deletions

12
src/env.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_AKEYLESS_KEY_PATH: string
readonly VITE_AKEYLESS_ACCESS_ID: string
readonly VITE_AKEYLESS_ACCESS_KEY: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}