Increase aws_polling / no_output_timeout to 1h

This commit is contained in:
Ian Davis 2022-10-04 01:22:13 +01:00
parent 80dc0ce879
commit d1981ef34e
3 changed files with 8 additions and 2 deletions

View File

@ -140,7 +140,7 @@ commands:
- run: - run:
name: "Run a packer build" name: "Run a packer build"
command: packer build << parameters.args >> << parameters.template >> command: packer build << parameters.args >> << parameters.template >>
no_output_timeout: 30m no_output_timeout: 1h
jobs: jobs:
mod-tidy-check: mod-tidy-check:

View File

@ -140,7 +140,7 @@ commands:
- run: - run:
name: "Run a packer build" name: "Run a packer build"
command: packer build << parameters.args >> << parameters.template >> command: packer build << parameters.args >> << parameters.template >>
no_output_timeout: 30m no_output_timeout: 1h
jobs: jobs:
mod-tidy-check: mod-tidy-check:

View File

@ -56,6 +56,11 @@ source "amazon-ebs" "lotus" {
owners = ["099720109477"] owners = ["099720109477"]
} }
ssh_username = "ubuntu" ssh_username = "ubuntu"
aws_polling {
delay_seconds = 60
max_attempts = 60
}
} }
source "digitalocean" "lotus" { source "digitalocean" "lotus" {
@ -82,3 +87,4 @@ build {
script = "./tools/packer/setup-snap.sh" script = "./tools/packer/setup-snap.sh"
} }
} }