-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from monocle2ai/kshitiz/infra_azure_component
Added attributes for azure infra components
- Loading branch information
Showing
7 changed files
with
51 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Azure environment constants | ||
AZURE_ML_ENDPOINT_ENV_NAME = "AZUREML_ENTRY_SCRIPT" | ||
AZURE_FUNCTION_WORKER_ENV_NAME = "FUNCTIONS_WORKER_RUNTIME" | ||
AZURE_APP_SERVICE_ENV_NAME = "WEBSITE_SITE_NAME" | ||
|
||
# Azure naming reference can be found here | ||
# https://learn.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/resource-abbreviations | ||
AZURE_FUNCTION_NAME = "azure.func" | ||
AZURE_APP_SERVICE_NAME = "azure.asp" | ||
AZURE_ML_SERVICE_NAME = "azure.mlw" | ||
|
||
azure_service_map = { | ||
AZURE_ML_ENDPOINT_ENV_NAME: AZURE_ML_SERVICE_NAME, | ||
AZURE_APP_SERVICE_ENV_NAME: AZURE_APP_SERVICE_NAME, | ||
AZURE_FUNCTION_WORKER_ENV_NAME: AZURE_FUNCTION_NAME | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters