From 9cc4c14a3230d39186920e20b77644d509945405 Mon Sep 17 00:00:00 2001 From: philnichol Date: Sat, 26 Sep 2020 08:42:56 +0100 Subject: [PATCH] increased ClientVpnAuthorizationRule timeouts from 5 to 10 minutes --- 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 72bd331341a..b9b374c8582 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 = 5 * time.Minute + ClientVpnAuthorizationRuleActiveTimeout = 10 * time.Minute - ClientVpnAuthorizationRuleRevokedTimeout = 5 * time.Minute + ClientVpnAuthorizationRuleRevokedTimeout = 10 * time.Minute ) func ClientVpnAuthorizationRuleAuthorized(conn *ec2.EC2, authorizationRuleID string) (*ec2.AuthorizationRule, error) {