terraform-ts
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published

terraform-js

A Javascript wrapper for terraform CLI.

Supports all commands with the exception of terraform console.

Installation

npm install terraform-js

Usage

See the generated API Docs for detailed documentation.

Using the Terraform Class

import { Terraform, Parse } from "terraform-js"
 
const tf = new Terraform({
    path: "/path/to/terraform",
    cwd: "/path/to/project"
})
 
tf.workspaceList().then(console.log)
 
//   workspace1
// * workspace2
//   workspace3

Functional Style

import { exec, map, Config, WorkspaceList, WorkspaceSelect, WorkspaceNew } from 'terraform-js'
 
const cfg = Config({ cwd: "/path/to/project" })
 
// execute a single command
exec(WorkspaceNew("test-2"), cfg).then((console.log))
 
//> * default
 
 
// execute multiple commands
const commands = [
    WorkspaceNew("test-1"),
    WorkspaceSelect("default")
    WorkspaceList()
]
 
mapExec(commands, cfg).then(results => results.forEach(console.log))
 
// logs output of each command

Readme

Keywords

Package Sidebar

Install

npm i terraform-ts

Weekly Downloads

14

Version

0.2.1

License

MIT

Last publish

Collaborators

  • christianbradley