node-tfe
Version:
A Typescript Client for Terraform Cloud/Enterprise V2 API
18 lines (17 loc) • 540 B
TypeScript
import { Serializer } from 'jsonapi-serializer';
export interface WorkspaceCreateOptions {
agentPoolID?: string;
allowDestroyPlan?: boolean;
autoApply?: boolean;
executionMode?: string;
fileTriggersEnabled?: boolean;
migrationEnvironment?: string;
name: string;
queueAllRuns?: boolean;
speculativeEnabled?: boolean;
terraformVersion?: string;
triggerPrefixes?: string[];
workingDirectory?: string;
sourceName?: string;
}
export declare const WorkspaceCreateOptionsSerializer: Serializer;