From 653c58c42b87830ea47928cd9186d6cc2e789744 Mon Sep 17 00:00:00 2001 From: Marques Johansson Date: Fri, 19 Oct 2018 21:25:48 -0400 Subject: [PATCH] creation was ending after 2m due to low connection timeout, bump to 300s --- master.tf | 6 +++--- nodes.tf | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/master.tf b/master.tf index 7b9eb3d..8c4dcc3 100644 --- a/master.tf +++ b/master.tf @@ -31,7 +31,7 @@ resource "linode_instance" "k8s_master" { connection { user = "core" - timeout = "30s" + timeout = "300s" } } @@ -41,7 +41,7 @@ resource "linode_instance" "k8s_master" { connection { user = "core" - timeout = "30s" + timeout = "300s" } } @@ -64,7 +64,7 @@ resource "linode_instance" "k8s_master" { connection { user = "core" - timeout = "30s" + timeout = "300s" } } diff --git a/nodes.tf b/nodes.tf index e6137f5..fa9ad5a 100644 --- a/nodes.tf +++ b/nodes.tf @@ -30,7 +30,7 @@ resource "linode_instance" "k8s_node" { connection { user = "core" - timeout = "30s" + timeout = "300s" } } @@ -48,7 +48,7 @@ resource "linode_instance" "k8s_node" { connection { user = "core" - timeout = "30s" + timeout = "300s" } } @@ -61,7 +61,7 @@ resource "linode_instance" "k8s_node" { connection { user = "core" - timeout = "30s" + timeout = "300s" host = "${linode_instance.k8s_master.0.ip_address}" } }