2018-02-02 10:55:32 +03:00
#
# CONNECTION STRINGS
#
IOTHUB_CONNECTION_STRING=""
2018-03-09 23:54:00 +03:00
2018-02-02 10:55:32 +03:00
DEVICE_CONNECTION_STRING=""
#
# CONTAINER REGISTRY
#
2018-03-09 23:54:00 +03:00
# Settings for your container registry, set CONTAINER_REGISTRY_SERVER to the following:
# Local Registry: "localhost:5000" - USERNAME/PASSWORD not required.
# Azure Container Registry: "jong.azurecr.io", Also set USERNAME/PASSWORD
# Docker Hub: "jongallant" - Your Docker hub username. Enter your Docker hub username into the CONTAINER_REGISTRY_USERNAME setting. Also set the PASSWORD.
2018-02-02 10:55:32 +03:00
CONTAINER_REGISTRY_SERVER="localhost:5000"
2018-01-18 21:21:03 +03:00
CONTAINER_REGISTRY_USERNAME=""
CONTAINER_REGISTRY_PASSWORD=""
2018-02-02 10:55:32 +03:00
#
# HOST
#
RUNTIME_HOME_DIR="."
# Directory to host the Runtime generated files and certs
# "." - Auto detect, defaults to the following:
# "%PROGRAMDATA%\azure-iot-edge\data" - Windows
# "/var/lib/azure-iot-edge" - Linux
# "/var/lib/azure-iot-edge" - Mac
RUNTIME_CONFIG_DIR="."
# Directory to host the Runtime config files
# "." - Auto detect, defaults to the following:
# "%PROGRAMDATA%\azure-iot-edge\config" - Windows
# "/etc/azure-iot-edge" - Linux
# "/etc/azure-iot-edge" - Mac
RUNTIME_HOST_NAME="."
# "." - Auto detect
2018-01-18 21:21:03 +03:00
2018-07-19 20:51:47 +03:00
RUNTIME_TAG="1.0"
2018-01-18 21:21:03 +03:00
2018-03-09 23:54:00 +03:00
RUNTIME_VERBOSITY="INFO"
2018-02-02 10:55:32 +03:00
# "DEBUG", "INFO", "ERROR", "WARNING"
2018-01-18 21:21:03 +03:00
2018-06-12 01:40:35 +03:00
RUNTIME_LOG_LEVEL="info"
# "debug", "info"
2018-02-02 10:55:32 +03:00
#
# MODULES
#
2018-01-18 21:21:03 +03:00
2018-07-19 20:51:47 +03:00
BYPASS_MODULES=""
# "" - to build all modules
# "filtermodule, module1" - Comma delimited list of modules to bypass when building
2018-01-18 21:21:03 +03:00
2018-03-21 15:44:56 +03:00
ACTIVE_DOCKER_PLATFORMS="amd64"
2018-02-02 10:55:32 +03:00
# "*" - to build all docker files
2018-02-10 11:18:44 +03:00
# "amd64,amd64.debug" - Comma delimted list of docker files to build
2018-01-18 21:21:03 +03:00
2018-02-10 10:01:48 +03:00
CONTAINER_TAG=""
2018-01-18 21:21:03 +03:00
2018-02-02 10:55:32 +03:00
DOTNET_VERBOSITY="q"
# q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]
2018-02-12 10:25:12 +03:00
DOTNET_EXE_DIR="./bin/Debug/netcoreapp2.0/publish"
# The default EXE_DIR directory to pass to the Docker build command.
2018-03-09 23:54:00 +03:00
2018-02-02 10:55:32 +03:00
#
2018-02-10 11:18:44 +03:00
# SOLUTION SETTINGS
2018-02-02 10:55:32 +03:00
#
2018-03-21 15:44:56 +03:00
CONFIG_OUTPUT_DIR="config"
2018-06-15 15:22:56 +03:00
DEPLOYMENT_CONFIG_FILE="deployment.json"
DEPLOYMENT_CONFIG_TEMPLATE_FILE="deployment.template.json"
RUNTIME_CONFIG_FILE="runtime.json"
2018-01-18 21:21:03 +03:00
LOGS_PATH="logs"
MODULES_PATH="modules"
IOT_REST_API_VERSION="2017-11-08-preview"
2018-02-02 10:55:32 +03:00
#
# DOCKER LOGS COMMAND
#
# Command used when calling iotedgedev docker --logs or --show-logs
2018-01-18 21:21:03 +03:00
LOGS_CMD="start /B start cmd.exe @cmd /k docker logs {0} -f"
2018-02-02 10:55:32 +03:00
# "start /B start cmd.exe @cmd /k docker logs {0} -f" - for CMD
# "docker logs {0} -f -new_console:sV" - for ConEmu
2018-01-18 21:21:03 +03:00
2018-03-09 23:54:00 +03:00
#
# AZURE SETTINGS
#
# These settings will override parameters to the `iotedgedev azure --setup` command.
# CREDENTIALS="username password"
# SERVICE_PRINCIPAL="username password tenant"
# RESOURCE_GROUP_LOCATION="australiaeast|australiasoutheast|brazilsouth|canadacentral|canadaeast|centralindia|centralus|eastasia|eastus|eastus2|japanwest|japaneast|northeurope|northcentralus|southindia|uksouth|ukwest|westus|westeurope|southcentralus|westcentralus|westus2"
# IOTHUB_SKU="F1|S1|S2|S3"
# UPDATE_DOTENV="True|False"
SUBSCRIPTION_ID=""
RESOURCE_GROUP_NAME=""
RESOURCE_GROUP_LOCATION=""
IOTHUB_NAME=""
IOTHUB_SKU=""
EDGE_DEVICE_ID=""
CREDENTIALS=""
SERVICE_PRINCIPAL=""
UPDATE_DOTENV=""