From 98066ab72e45b8a894712686ca0edf0e1abd0f29 Mon Sep 17 00:00:00 2001 From: Connor Tyndall Date: Fri, 4 Sep 2020 16:30:44 -0400 Subject: [PATCH] Updated ClientVpnAuthorizationRuleActiveTimeout and ClientVpnAuthorizationRuleRevokedTimeout to 5 minute timeout --- 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 18ed0f2e457..d776dd2b85b 100644 --- a/aws/internal/service/ec2/waiter/waiter.go +++ b/aws/internal/service/ec2/waiter/waiter.go @@ -73,9 +73,9 @@ func ClientVpnEndpointDeleted(conn *ec2.EC2, id string) (*ec2.ClientVpnEndpoint, } const ( - ClientVpnAuthorizationRuleActiveTimeout = 1 * time.Minute + ClientVpnAuthorizationRuleActiveTimeout = 5 * time.Minute - ClientVpnAuthorizationRuleRevokedTimeout = 1 * time.Minute + ClientVpnAuthorizationRuleRevokedTimeout = 5 * time.Minute ) func ClientVpnAuthorizationRuleAuthorized(conn *ec2.EC2, authorizationRuleID string) (*ec2.AuthorizationRule, error) {