public async runTerraformCmd()

in src/cloudShell.ts [126:131]


    public async runTerraformCmd(tfCommand: string): Promise<void> {
        if (await this.connectedToCloudShell()) {
            const workingDirectory: string = await selectWorkspaceFolder();
            await this.runTFCommand(tfCommand, workingDirectory ? `${Constants.clouddrive}/${path.basename(workingDirectory)}` : "");
        }
    }