fix: VMware Tanzu Platform provider - bug fixes, streaming, UI improvements (#8126)

Signed-off-by: Nick Kuhn <nick.kuhn@broadcom.com>
Signed-off-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Nick Kuhn
2026-03-26 14:16:01 -04:00
committed by GitHub
parent cdf91ea798
commit c936514014
16 changed files with 725 additions and 61 deletions
+5
View File
@@ -331,6 +331,11 @@ export type EnvVarConfig = {
default?: string | null;
description?: string | null;
name: string;
/**
* When true, the field is shown prominently in the UI (not collapsed).
* Defaults to the value of `required` if not specified.
*/
primary?: boolean | null;
required?: boolean;
secret?: boolean;
};