dce-dev-wizard
Version:
Wizard for managing development apps at Harvard DCE.
19 lines (17 loc) • 318 B
text/typescript
/**
* One deployment instance
* @author Gabe Abrams
*/
type Deployment = {
// Human-readable name
name: string,
// Deployment app name
app: string,
// AWS profile
profile: string,
// Custom stack info for this deployment
customStackInfo?: {
[k: string]: any,
},
};
export default Deployment;