Fix file paths for TF

This commit is contained in:
Chris Long
2020-06-14 18:56:14 -07:00
parent a904bf4b8c
commit b5887c1d5a

View File

@@ -391,7 +391,7 @@ resource "azurerm_virtual_machine" "dc" {
pass = "oobeSystem"
component = "Microsoft-Windows-Shell-Setup"
setting_name = "FirstLogonCommands"
content = file("./files/FirstLogonCommands.xml")
content = file("${path.module}/files/FirstLogonCommands.xml")
}
}
@@ -448,7 +448,7 @@ resource "azurerm_virtual_machine" "wef" {
pass = "oobeSystem"
component = "Microsoft-Windows-Shell-Setup"
setting_name = "FirstLogonCommands"
content = file("./files/FirstLogonCommands.xml")
content = file("${path.module}/files/FirstLogonCommands.xml")
}
}
@@ -505,7 +505,7 @@ resource "azurerm_virtual_machine" "win10" {
pass = "oobeSystem"
component = "Microsoft-Windows-Shell-Setup"
setting_name = "FirstLogonCommands"
content = file("./files/FirstLogonCommands.xml")
content = file("${path.module}/files/FirstLogonCommands.xml")
}
}