Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 651 Bytes

proxy-note.md

File metadata and controls

21 lines (20 loc) · 651 Bytes
author ms.author ms.topic ms.date
jessmjohnson
jejohn
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