mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix: Re-enable infra provisioning and teardown (no-changelog) (#10636)
This commit is contained in:
parent
022ddcbef9
commit
14952eb83b
|
@ -30,7 +30,7 @@ export class TerraformClient {
|
|||
console.log('Provisioning cloud environment...');
|
||||
|
||||
await this.$$`terraform init`;
|
||||
// await this.$$`terraform apply -input=false -auto-approve`;
|
||||
await this.$$`terraform apply -input=false -auto-approve`;
|
||||
|
||||
const privateKeyName = await this.extractPrivateKey();
|
||||
|
||||
|
@ -50,7 +50,7 @@ export class TerraformClient {
|
|||
|
||||
console.log('Destroying cloud environment...');
|
||||
|
||||
// await this.$$`terraform destroy -input=false -auto-approve`;
|
||||
await this.$$`terraform destroy -input=false -auto-approve`;
|
||||
}
|
||||
|
||||
async getTerraformOutput(key) {
|
||||
|
|
Loading…
Reference in a new issue