Replies: 1 comment
-
Secret Management for SuperpositionProblemNeed to add user-facing secrets feature:
HashiCorp Vault (Self-Hosted) / AWS KMS How it works:
Pros:
Cons:
Database SchemaCREATE TABLE {{workspace}}.secrets (
name VARCHAR(255) PRIMARY KEY,
encrypted_value TEXT NOT NULL, -- AES-256-GCM encrypted
description TEXT,
created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
last_modified_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
created_by VARCHAR(255) NOT NULL,
last_modified_by VARCHAR(255) NOT NULL,
change_reason TEXT,
is_active BOOLEAN DEFAULT true,
);
CREATE INDEX idx_secrets_active ON secrets(is_active);API Design (Same as Variables, No Read) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We need Github like Secret support in Superposition for use in functions and webhook invocations.
Beta Was this translation helpful? Give feedback.
All reactions