Merge pull request #12 from jessicahoffman/master

grafana aad added
This commit is contained in:
Noel 2019-05-23 14:06:53 -07:00 коммит произвёл GitHub
Родитель eea6c6be37 22ed1d6f57
Коммит 81dd2f7356
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -57,6 +57,12 @@ az group create -n $TF_BACKEND_RG -l westus2
az storage account create -g $TF_BACKEND_RG -n $TF_BACKEND_STORAGE --sku Standard_LRS
az storage container create -n terraform --account-name $TF_BACKEND_STORAGE
# Setting up Grafana with Azure Active Directory
az ad app create \
--display-name <display_name> \
--reply-urls <reply_urls> # separated by spaces if more than one
--password <client_secret_value> # must be at least 16 characters long, contain at least 1 special character, and contain at least 1 numeric character
# Deploy the development infrastructure
cd terraform/infra
terraform init \