Skip to content

Commit bf8e340

Browse files
fix: increase remote exec timeout (#439)
Signed-off-by: samuelarogbonlo <[email protected]>
1 parent c908560 commit bf8e340

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

tf-managed/modules/daily-snapshot/main.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,10 @@ resource "digitalocean_droplet" "forest" {
7575
graceful_shutdown = false
7676

7777
connection {
78-
host = self.ipv4_address
79-
user = "root"
80-
type = "ssh"
78+
host = self.ipv4_address
79+
user = "root"
80+
type = "ssh"
81+
timeout = "10m"
8182
}
8283

8384
# Push the sources.tar file to the newly booted droplet

tf-managed/modules/forest-droplet/main.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ resource "digitalocean_droplet" "forest" {
3838
graceful_shutdown = false
3939

4040
connection {
41-
host = self.ipv4_address
42-
user = "root"
43-
type = "ssh"
41+
host = self.ipv4_address
42+
user = "root"
43+
type = "ssh"
44+
timeout = "10m"
4445
}
4546

4647
provisioner "file" {

tf-managed/modules/sync-check/main.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,10 @@ resource "digitalocean_droplet" "forest" {
7474
graceful_shutdown = false
7575

7676
connection {
77-
host = self.ipv4_address
78-
user = "root"
79-
type = "ssh"
77+
host = self.ipv4_address
78+
user = "root"
79+
type = "ssh"
80+
timeout = "10m"
8081
}
8182

8283
# Push the sources.tar file to the newly booted droplet

0 commit comments

Comments
 (0)