@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
19 lines (18 loc) • 345 B
text/typescript
export type KubernetesSecretName = string;
export interface ISecrets {
[key: string]: KubernetesSecretName;
}
export interface IValueFile {
env?: {
public?: {
[key: string]: string;
};
secret?: ISecrets;
};
cloudsql?: {
enabled: boolean;
instanceId?: string;
region?: string;
projectId?: string;
};
}