Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 612 Bytes

proxy-note.md

File metadata and controls

19 lines (18 loc) · 612 Bytes
ms.topic ms.date
include
06/23/2022

Note

If you see the error "Cannot find subscription with name [subscription ID]", this may be because you are behind a proxy and unable to reach the Azure API. Configure HTTP_PROXY and HTTPS_PROXY environment variables with your proxy information in your terminal:

# Windows
set HTTPS_PROXY=https://username:password@proxy:8080
set HTTP_PROXY=http://username:password@proxy:8080
# macOS/Linux
export HTTPS_PROXY=https://username:password@proxy:8080
export HTTP_PROXY=http://username:password@proxy:8080