Skip to content

Commit

Permalink
Provision vm agents for Windows machines (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyon authored and metacpp committed Oct 1, 2018
1 parent c391e10 commit e9b4363
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@ resource "azurerm_virtual_machine" "vm-windows" {

tags = "${var.tags}"

os_profile_windows_config {}
os_profile_windows_config {
provision_vm_agent = true
}

boot_diagnostics {
enabled = "${var.boot_diagnostics}"
Expand Down Expand Up @@ -221,7 +223,9 @@ resource "azurerm_virtual_machine" "vm-windows-with-datadisk" {

tags = "${var.tags}"

os_profile_windows_config {}
os_profile_windows_config {
provision_vm_agent = true
}

boot_diagnostics {
enabled = "${var.boot_diagnostics}"
Expand Down

0 comments on commit e9b4363

Please sign in to comment.