fix: Re-enable infra provisioning and teardown (no-changelog) (#10636)

This commit is contained in:
Tomi Turtiainen
2024-09-02 16:57:07 +03:00
committed by GitHub
parent 022ddcbef9
commit 14952eb83b

View File

@@ -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) {