1# --------------------------------------------------------------------------------------------
2# Copyright (c) Microsoft Corporation. All rights reserved.
3# Licensed under the MIT License. See License.txt in the project root for license information.
4# --------------------------------------------------------------------------------------------
5
6import os
7
8from azure.cli.core._environment import get_config_dir
9
10GLOBAL_CONFIG_DIR = get_config_dir()
11CONFIG_FILE_NAME = 'config'
12GLOBAL_CONFIG_PATH = os.path.join(GLOBAL_CONFIG_DIR, CONFIG_FILE_NAME)
13ENV_VAR_PREFIX = 'AZURE'
14