forked from Azure/azure-diskinspect-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.sh
executable file
·26 lines (21 loc) · 936 Bytes
/
env.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# !/bin/bash
# Docker Container
CONTAINERREPO="azlinux/azdis"
CONTAINERTAG="1.1"
CONTAINERNAME="$CONTAINERREPO:$CONTAINERTAG"
CONTAINERHOSTNAME="logext-testagents.trafficmanager.net"
# Disk Inspector Service
SERVICENAME="AzureDiskInspectSvc_US"
SERVICEVOLUMENAME="AzureDiskInspectSvcSSLVolume"
# SSL
SSL_PATH="$HOME/azdis_ssl"
SSL_PRIVATE_KEY="$SSL_PATH/azdis_private.rsa"
SSL_PUBLIC_KEY="$SSL_PATH/azdis_public.crt"
# Miscellaneous
LOG_FILE="/var/log/azureDiskInspectSvc.log"
CREDSCANSERVICEVOLUMENAME="CredScanSvc"
# TODO: replace this with envionment specific AppInsights instrumentation key
APPINSIGHTS_KEY='00000000-0000-0000-00000000000000000'
# Replace this with environment specific AppInsights Endpoint. Below is the defualt for Azure Public environemnt.
# Will be relace by environment variable for other clouds during service deployment via script
APPINSIGHTS_ENDPOINTURL='https://dc.services.visualstudio.com/v2/track'