private async pushFilePromise()

in src/cloudShell.ts [208:219]


    private async pushFilePromise(file: string): Promise<void> {
        if (await fsExtra.pathExists(file)) {
            terraformChannel.appendLine(`Uploading file ${file} to cloud shell`);
            await azFilePush(
                vscode.workspace.getWorkspaceFolder(vscode.Uri.file(file)).name,
                this.storageAccountName,
                this.storageAccountKey,
                this.fileShareName,
                file,
            );
        }
    }