Skip to content

Commit

Permalink
fix: increase remote exec timeout (#439)
Browse files Browse the repository at this point in the history
Signed-off-by: samuelarogbonlo <[email protected]>
  • Loading branch information
samuelarogbonlo authored May 8, 2024
1 parent c908560 commit bf8e340
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
7 changes: 4 additions & 3 deletions tf-managed/modules/daily-snapshot/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ resource "digitalocean_droplet" "forest" {
graceful_shutdown = false

connection {
host = self.ipv4_address
user = "root"
type = "ssh"
host = self.ipv4_address
user = "root"
type = "ssh"
timeout = "10m"
}

# Push the sources.tar file to the newly booted droplet
Expand Down
7 changes: 4 additions & 3 deletions tf-managed/modules/forest-droplet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ resource "digitalocean_droplet" "forest" {
graceful_shutdown = false

connection {
host = self.ipv4_address
user = "root"
type = "ssh"
host = self.ipv4_address
user = "root"
type = "ssh"
timeout = "10m"
}

provisioner "file" {
Expand Down
7 changes: 4 additions & 3 deletions tf-managed/modules/sync-check/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,10 @@ resource "digitalocean_droplet" "forest" {
graceful_shutdown = false

connection {
host = self.ipv4_address
user = "root"
type = "ssh"
host = self.ipv4_address
user = "root"
type = "ssh"
timeout = "10m"
}

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

0 comments on commit bf8e340

Please sign in to comment.