sdk
sdk copied to clipboard
Infisical cross-language SDK
Trying to migrate from the old SDK to the new SDK (poor communication on Infisical's behalf by the way, customers weren't given a warning ahead of time and half of...
My code: ```ts import { InfisicalClient, LogLevel } from "@infisical/sdk"; // Secret const client = new InfisicalClient({ clientId: "YOUR_CLIENT_ID", clientSecret: "YOUR_CLIENT_SECRET", logLevel: LogLevel.Error, }); ``` When I start this app...
GoLang developers would want to make use of this feature. Many backend and microservices are being built by companies and organizations so it is worthwhile building a GoLang SDK.
Steps to reproduce: * create a project with two folders `/path_1` and `/path_2` * add `MY_SECRET `to both folders, but give them different values `value_1` and `value_2` * run `getSecret...
I updated through Poetry to the latest stable available version of infisical-python package (2.1.9) and during the installation of the update, the following poetry warning showed up: ```batch Warning: Validation...
I have notice that when a server is running for +1 day using the infisical sdk errors will start showing up from pyo3 complaining about "No file handlers available". The...
When trying to deploy a AWS lambda function with NodeJs (Typescript) using Infisical SDK I get the following: > ✘ [ERROR] No loader is configured for ".node" files: asset-input/node_modules/@infisical/sdk-darwin-arm64/infisical.darwin-arm64.node >...
I'm working to integrate Infisical with my Supabase Edge Functions, which all run on Deno. However when I try to import the sdk (via `import { InfisicalClient } from 'npm:@infisical/sdk';`,...
I only see methods to work with secrets, but not projects at https://infisical.com/docs/sdks/languages/python . Can I create project with Python SDK?
Hello, I've created a NextJs App that uses the SDK via npm to retrieve secrets on the server side. next.config.js: ``` const os = require('os'); module.exports = { webpack: (config,...