Change EC2 WindowsPasswordTimeout to 20 minutes

10 minutes is often exceeded when using a custom source AMI
which has been sysprepped.
This commit is contained in:
Richard Owen 2017-02-24 11:08:17 +00:00 committed by GitHub
parent ddddb85cba
commit 33a4c2e13b
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ func (c *RunConfig) Prepare(ctx *interpolate.Context) []error {
}
if c.WindowsPasswordTimeout == 0 {
c.WindowsPasswordTimeout = 10 * time.Minute
c.WindowsPasswordTimeout = 20 * time.Minute
}
if c.RunTags == nil {