feat: Require Vault set up for first-time setup so all passed in secrets can be encrypted right off the bat

This commit is contained in:
2025-10-27 12:00:27 -06:00
parent 6f77b3f46e
commit b49a27f886
12 changed files with 75 additions and 22 deletions
+2 -2
View File
@@ -27,8 +27,8 @@ impl VertexAIClient {
config_get_fn!(location, get_location);
pub const PROMPTS: [PromptAction<'static>; 2] = [
("project_id", "Project ID", None),
("location", "Location", None),
("project_id", "Project ID", None, false),
("location", "Location", None, false),
];
}