Skip to content

Commit 596bbb3

Browse files
fix: increase remote exec timeout to 30 minutes (#443)
Signed-off-by: samuelarogbonlo <[email protected]>
1 parent bf8e340 commit 596bbb3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ resource "digitalocean_droplet" "forest" {
7878
host = self.ipv4_address
7979
user = "root"
8080
type = "ssh"
81-
timeout = "10m"
81+
timeout = "30m"
8282
}
8383

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ resource "digitalocean_droplet" "forest" {
4141
host = self.ipv4_address
4242
user = "root"
4343
type = "ssh"
44-
timeout = "10m"
44+
timeout = "30m"
4545
}
4646

4747
provisioner "file" {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ resource "digitalocean_droplet" "forest" {
7777
host = self.ipv4_address
7878
user = "root"
7979
type = "ssh"
80-
timeout = "10m"
80+
timeout = "30m"
8181
}
8282

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

0 commit comments

Comments
 (0)