Skip to content

Commit

Permalink
fix: Re-enable infra provisioning and teardown (no-changelog) (#10636)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomi authored Sep 2, 2024
1 parent 022ddcb commit 14952eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/@n8n/benchmark/scripts/clients/terraformClient.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand All @@ -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) {
Expand Down

0 comments on commit 14952eb

Please sign in to comment.