From 1ee7dccd96a1efaf524db67ae3c8703e3ddf31b0 Mon Sep 17 00:00:00 2001 From: Connor Tyndall Date: Tue, 1 Dec 2020 20:37:08 -0500 Subject: [PATCH] Updated network association timeout from 10 min to 30 min --- aws/internal/service/ec2/waiter/waiter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aws/internal/service/ec2/waiter/waiter.go b/aws/internal/service/ec2/waiter/waiter.go index 18ed0f2e457d..31515ce7c3ae 100644 --- a/aws/internal/service/ec2/waiter/waiter.go +++ b/aws/internal/service/ec2/waiter/waiter.go @@ -113,11 +113,11 @@ func ClientVpnAuthorizationRuleRevoked(conn *ec2.EC2, authorizationRuleID string } const ( - ClientVpnNetworkAssociationAssociatedTimeout = 10 * time.Minute + ClientVpnNetworkAssociationAssociatedTimeout = 30 * time.Minute ClientVpnNetworkAssociationAssociatedDelay = 4 * time.Minute - ClientVpnNetworkAssociationDisassociatedTimeout = 10 * time.Minute + ClientVpnNetworkAssociationDisassociatedTimeout = 30 * time.Minute ClientVpnNetworkAssociationDisassociatedDelay = 4 * time.Minute