This commit is contained in:
dstrebel 2019-10-23 12:00:17 -05:00
Родитель baa0f32a47
Коммит 75e5478c5f
2 изменённых файлов: 2 добавлений и 5 удалений

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

@ -1,12 +1,8 @@
resource "azurerm_resource_group" "demo" {
name = "${var.resource_group_name}"
location = "${var.location}"
}
resource "azurerm_application_insights" "demo" {
name = "${var.prefix}-ai"
location = "${var.location}"
resource_group_name = "${azurerm_resource_group.demo.name}"
resource_group_name = "${var.resource_group}"
application_type = "web"
}

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

@ -121,6 +121,7 @@ variable "github_organization" {
}
variable "github_repository_name" {
default = "sg-aks-workshop"
description = "Name of the Github repository for Flux"
}