Skip to content

Commit

Permalink
fix: increase reomte exec timeout to 30 minutes
Browse files Browse the repository at this point in the history
Signed-off-by: samuelarogbonlo <[email protected]>
  • Loading branch information
samuelarogbonlo committed May 8, 2024
1 parent bf8e340 commit b486def
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tf-managed/modules/daily-snapshot/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ resource "digitalocean_droplet" "forest" {
host = self.ipv4_address
user = "root"
type = "ssh"
timeout = "10m"
timeout = "30m"
}

# Push the sources.tar file to the newly booted droplet
Expand Down
2 changes: 1 addition & 1 deletion tf-managed/modules/forest-droplet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ resource "digitalocean_droplet" "forest" {
host = self.ipv4_address
user = "root"
type = "ssh"
timeout = "10m"
timeout = "30m"
}

provisioner "file" {
Expand Down
2 changes: 1 addition & 1 deletion tf-managed/modules/sync-check/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ resource "digitalocean_droplet" "forest" {
host = self.ipv4_address
user = "root"
type = "ssh"
timeout = "10m"
timeout = "30m"
}

# Push the sources.tar file to the newly booted droplet
Expand Down

0 comments on commit b486def

Please sign in to comment.