forked from CDA0/terrajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.js
34 lines (30 loc) · 1.39 KB
/
example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* eslint-disable no-console */
const Terrajs = require('./src/index');
const example = async () => {
const tf = new Terrajs({ execute: false });
[
await tf.version(),
await tf.validate(),
await tf.fmt({ check: false, diff: true }),
await tf.fmt({ check: true, diff: true, dir: 'some/path' }),
await tf.graph({ drawCycles: true, type: 'plan', dir: 'some/path' }),
await tf.providers({ dir: 'some/path' }),
await tf.show({ moduleDepth: 5 }),
await tf.init({ backendConfig: { key: 'KEYKEYKEY' } }),
await tf.get({ update: true, dir: 'some/path' }),
await tf.import({ address: 'a_resource.exmple', id: '/unique/identifier' }),
await tf.refresh({ var: { environment: 'SP' }, target: ['a_resource.example'] }),
await tf.plan({ var: { environment: 'SP', location: 'westeurope' } }),
await tf.apply({ var: { environment: 'SP', location: 'westeurope' } }),
await tf.apply({ var: { environment: 'SP', location: 'westeurope' }, plan: 'terraform.tfplan' }),
await tf.output({ json: true }),
await tf.taint({ resource: 'resource' }),
await tf.untaint({ resource: 'resource' }),
await tf.workspaceDelete({ name: 'dev' }),
await tf.workspaceList({ dir: 'some/path' }),
await tf.workspaceNew({ name: 'dev' }),
await tf.workspaceSelect({ name: 'dev' }),
await tf.workspaceShow(),
].forEach(command => console.log(command));
};
example();