Skip to content

Commit

Permalink
fix(windows packer): Added install_git variable back
Browse files Browse the repository at this point in the history
  • Loading branch information
henrykie committed Sep 23, 2024
1 parent 604b312 commit 0dbfc28
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion assets/packer/build-agents/windows/windows.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ variable "install_vs_tools" {
default = true
}

variable "install_git" {
type = bool
default = true
}

variable "public_key" {
type = string
}
Expand Down Expand Up @@ -90,7 +95,7 @@ source "amazon-ebs" "base" {
winrm_insecure = true
winrm_username = "Administrator"
winrm_use_ssl = true
winrm_timeout = "1h"
winrm_timeout = "15m"
user_data_file = "./userdata.ps1"

# network specific details
Expand Down

0 comments on commit 0dbfc28

Please sign in to comment.