hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.82k stars 9.16k forks source link

GetWebACLForResource inefficient retry #14975

Closed nijave closed 2 years ago

nijave commented 4 years ago

Community Note

Description

I've noticed we hit rate limiting and excessive wait time when doing this API call and yesterday it managed to delay a plan by 26 minutes (we don't even have many of these resources). I think modification to jitter/backoff for this particular API client would greatly improve the speed due to the 1 req/sec throttling.

In the image below, you can see them coming in as batches where only one request goes through and the rest get throttled. Over time, the expontential backoff becomes quite high but the API calls are still tried at approximately the same time

New or Affected Resource(s)

References

image

https://docs.aws.amazon.com/waf/latest/developerguide/limits.html

Edit: Looks like we're using the v1 variant--haven't checked to see if the client setup is any different but assuming they're the same

rsclarke-vgw commented 4 years ago

Are you able to add depends_on between the aws_wafv2_web_acl_association resources as a work around?

nijave commented 4 years ago

Are you able to add depends_on between the aws_wafv2_web_acl_association resources as a work around?

Would that help when refreshing state? We hardly ever touch these and there's only five of them.

Here's what I got daisy chaining the five together:

2020-09-03T19:13:11.454-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:11 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:12.065-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:12 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:13.576-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:13 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:19.515-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:19 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:20.432-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:20 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:24.670-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:24 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:29.324-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:29 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:30.399-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:30 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:32.403-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:32 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:36.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:36 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 3/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:43.326-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:43 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 4/25, error ThrottlingException: Rate exceeded
2020-09-03T19:13:51.550-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:13:51 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 5/25, error ThrottlingException: Rate exceeded
2020-09-03T19:14:13.526-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:14:13 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 6/25, error ThrottlingException: Rate exceeded
2020-09-03T19:14:49.074-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:14:49 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 7/25, error ThrottlingException: Rate exceeded
bflad commented 4 years ago

Hi @nijave 👋 Thank you for reporting this. Generally speaking, these sorts of throttling and retry-able errors are invisible to our code without some complicated request handling gymnastics. The AWS Go SDK handles this logic automatically with its "default retryer" logic and only returns afterwards. Not to fret though, we have a few options here.

The first and ostensibly the worst user experience, but possible right now, would be reducing the concurrency of Terraform operations via the -parallelism flag. It defaults to 10 and can be lowered to reduce concurrent API calls with similar exponential backoff retries.

The second is a simpler option we have in our code. We can introduce a mutex around this specific API call since we know that concurrent invocations would almost certainly generate the throttling errors. This does have the caveat of only working with a single instance of the Terraform AWS Provider (e.g. not a Terraform configuration with multiple provider alias), but the implementation is fairly straightforward:

// At the top of aws/resource_aws_wafv2_web_acl_association.go

const Wafv2GetWebACLForResourceMutexKey = "wafv2-GetWebACLForResource"

// Added to the top of the resourceAwsWafv2WebACLAssociationRead function

awsMutexKV.Lock(Wafv2GetWebACLForResourceMutexKey)
defer awsMutexKV.Unlock(Wafv2GetWebACLForResourceMutexKey)

The third is a much more complex option that we have tried avoiding in our code, which is implementing a "custom retryer" function for this specific AWS Go SDK service client or the API call. This is much harder to maintain and we have avoided this type of implementation in the past for that reason, but theoretically that retry function could inject a much longer and more variable backoff algorithm.

The fourth option would be reaching out to the AWS Go SDK team via their GitHub issues and/or a technical AWS Support case to suggest an upstream implementation that would help all AWS customer applications using the AWS Go SDK, including the Terraform AWS Provider. One challenge they might push back on is if the API response does not include HTTP headers or other information to help them determine if and when to slow requests down a certain way. They are maintaining a generic API interface across many different API implementations so they also try to reduce per-service customizations.


Regardless of the direction here -- I think option 2 we can get in easily if someone wants to contribute it. Option 3 we likely would not want to maintain. Option 4 might be good to file upstream to gather their (or the WAF service team) thoughts.


One question that would help guide implementation details here would be knowing if the GetWebACLForResource API response that includes the ThrottlingError also includes a HTTP header that shows a timestamp when to retry. Turning on debug logging with Terraform, e.g. TF_LOG=debug terraform plan, should contain logs like this (grabbed from a random EC2 DescribeVolumes debug log I had readily available):

2020/09/04 12:59:21 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVolumes Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 736
Content-Type: text/xml;charset=UTF-8
Date: Fri, 04 Sep 2020 12:59:21 GMT
Server: AmazonEC2
X-Amzn-Requestid: c1efeb8c-8374-41e8-9cf4-3858155be939

-----------------------------------------------------
2020/09/04 12:59:21 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<DescribeVolumesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
...
</DescribeVolumesResponse>

If it includes some sort of retry timestamp header, then option 4 seems the best route here where the AWS Go SDK "default retryer" takes that header value into account when implementing the backoff. We can still implement option 2 in the meantime as well.

nijave commented 4 years ago

Hi @nijave wave Thank you for reporting this. Generally speaking, these sorts of throttling and retry-able errors are invisible to our code without some complicated request handling gymnastics. The AWS Go SDK handles this logic automatically with its "default retryer" logic and only returns afterwards. Not to fret though, we have a few options here.

The first and ostensibly the worst user experience, but possible right now, would be reducing the concurrency of Terraform operations via the -parallelism flag. It defaults to 10 and can be lowered to reduce concurrent API calls with similar exponential backoff retries.

The second is a simpler option we have in our code. We can introduce a mutex around this specific API call since we know that concurrent invocations would almost certainly generate the throttling errors. This does have the caveat of only working with a single instance of the Terraform AWS Provider (e.g. not a Terraform configuration with multiple provider alias), but the implementation is fairly straightforward:

// At the top of aws/resource_aws_wafv2_web_acl_association.go

const Wafv2GetWebACLForResourceMutexKey = "wafv2-GetWebACLForResource"

// Added to the top of the resourceAwsWafv2WebACLAssociationRead function

awsMutexKV.Lock(Wafv2GetWebACLForResourceMutexKey)
defer awsMutexKV.Unlock(Wafv2GetWebACLForResourceMutexKey)

The third is a much more complex option that we have tried avoiding in our code, which is implementing a "custom retryer" function for this specific AWS Go SDK service client or the API call. This is much harder to maintain and we have avoided this type of implementation in the past for that reason, but theoretically that retry function could inject a much longer and more variable backoff algorithm.

The fourth option would be reaching out to the AWS Go SDK team via their GitHub issues and/or a technical AWS Support case to suggest an upstream implementation that would help all AWS customer applications using the AWS Go SDK, including the Terraform AWS Provider. One challenge they might push back on is if the API response does not include HTTP headers or other information to help them determine if and when to slow requests down a certain way. They are maintaining a generic API interface across many different API implementations so they also try to reduce per-service customizations.

Regardless of the direction here -- I think option 2 we can get in easily if someone wants to contribute it. Option 3 we likely would not want to maintain. Option 4 might be good to file upstream to gather their (or the WAF service team) thoughts.

One question that would help guide implementation details here would be knowing if the GetWebACLForResource API response that includes the ThrottlingError also includes a HTTP header that shows a timestamp when to retry. Turning on debug logging with Terraform, e.g. TF_LOG=debug terraform plan, should contain logs like this (grabbed from a random EC2 DescribeVolumes debug log I had readily available):

2020/09/04 12:59:21 [DEBUG] [aws-sdk-go] DEBUG: Response ec2/DescribeVolumes Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 736
Content-Type: text/xml;charset=UTF-8
Date: Fri, 04 Sep 2020 12:59:21 GMT
Server: AmazonEC2
X-Amzn-Requestid: c1efeb8c-8374-41e8-9cf4-3858155be939

-----------------------------------------------------
2020/09/04 12:59:21 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<DescribeVolumesResponse xmlns="http://ec2.amazonaws.com/doc/2016-11-15/">
...
</DescribeVolumesResponse>

If it includes some sort of retry timestamp header, then option 4 seems the best route here where the AWS Go SDK "default retryer" takes that header value into account when implementing the backoff. We can still implement option 2 in the meantime as well.

Yeah, I was avoiding the parallelism route since this particular module has around 800 resources and I think the net result will be even worse (it seems to usually take around 2 minutes with the 5 resources)

I was having decent luck tweaking the default retrier

        wafregionalconn:                     wafregional.New(sess.Copy(
            &aws.Config{
                Endpoint: aws.String(c.Endpoints["wafregional"]),
                Retryer: client2.DefaultRetryer{
                    NumMaxRetries: c.MaxRetries,
                    MinRetryDelay: client2.DefaultRetryerMinRetryDelay,
                    MinThrottleDelay: 2 * time.Second,
                    MaxThrottleDelay: 15 * time.Second,
                },
            })),

We've had decent luck tweaking the retrier in our Ruby code but not sure about the TF experiences. I'll go ahead and create an issue with the Go SDK as well.

I'll update this with some log details later today

nijave commented 4 years ago
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:50 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:50 GMT
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: d737fe2f-b1d6-4651-9262-c78f22b42914
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:50 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:50.717-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:50 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:51 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:51 GMT
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: 57210ff8-b59b-4f16-804a-e2e240fca29d
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:51 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:51.950-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:51 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:51 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:51 GMT
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: f6f3c081-fc97-4659-85f7-746cedcaa6b1
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:51 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:51.959-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:51 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:52 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:51 GMT
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: d07a2906-7a39-4eea-b7d4-d1741c10ff6f
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:52 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:52.615-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:52 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:52 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:52 GMT
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: 29a60845-59b9-434d-a687-555a271377d2
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:52 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:52.675-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:52 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:53 GMT
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: fa5c6a00-c98f-4f3b-9c98-eb1a54cbb2e6
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:54.215-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:53 GMT
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: d1bfa28d-d7e7-4373-803a-17de421112f8
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:54.217-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded

2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:53 GMT
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: 8f81b94c-977b-47c1-9647-4be1a47ef7b8
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:54.508-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded

2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:53 GMT
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: 0672bd59-4fa3-4127-b073-a8507baea48a
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:54.661-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:54 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:56 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: ---[ RESPONSE ]--------------------------------------
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: HTTP/1.1 400 Bad Request
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Connection: close
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Length: 58
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Content-Type: application/x-amz-json-1.1
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: Date: Thu, 03 Sep 2020 23:19:56 GMT
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: X-Amzn-Requestid: 75af49ff-fffe-4427-b15e-7815ccbc0d8e
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: -----------------------------------------------------
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:56 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T19:19:56.173-0400 [DEBUG] plugin.terraform-provider-aws_v2.70.0_x4: 2020/09/03 19:19:56 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:44 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:43 GMT
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: d56155bc-b745-439c-8853-40dee5e70b0d
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:44 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:44.687-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:44 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:44 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:44 GMT
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 33785355-a14e-4230-a79a-474a46d0db58
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:44 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:44.861-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:44 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:44 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:44 GMT
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 562ac776-7b88-4f4c-9fe2-9eaa9e548536
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:44 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:44.915-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:44 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:45 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:44 GMT
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: e9ab900f-014a-4bd8-a9fb-7d192e1e441f
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:45 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:45.150-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:45 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:45 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:45 GMT
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: bc55931d-29d7-4228-b47e-77cd390d977c
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:45 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:45.561-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:45 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:45 GMT
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 63f7c8d6-6b67-4fdf-93fa-2d77e53cd772
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:46.059-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:45 GMT
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 64dbffa3-0406-4df4-83c9-a82dbcb5f253
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:46.086-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:46 GMT
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 0e870a5f-811d-4b4f-9eba-4661237cbdb6
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:46.929-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:46 GMT
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 13507477-c96e-47f5-b885-ee37ad9985ec
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:46.964-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:46 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:49 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:48 GMT
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: a8704078-e4dc-41b5-aa52-8c6e99c31dda
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:49 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:49.394-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:49 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:49 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:48 GMT
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 5f6f2df4-fe82-4f63-bb3b-2797f8a77c7b
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:49 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:49.783-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:49 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:50.833-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:50 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:50.833-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:50.833-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:50.833-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:50.834-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:50.834-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:50.834-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:49 GMT
2020-09-03T20:05:50.834-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 8b7552f2-236b-4344-b197-65645df0fbbb
2020-09-03T20:05:50.834-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:50.834-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:50.834-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:50.834-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:50 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:50.834-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:50 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:57.132-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:57 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:57.132-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:57.132-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:57.132-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:57.132-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:57.133-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:57.133-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:56 GMT
2020-09-03T20:05:57.133-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 70d623e5-186f-45cd-9a00-63a046aef96f
2020-09-03T20:05:57.133-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:57.133-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:57.133-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:57.133-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:57 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:57.133-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:57 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 3/25, error ThrottlingException: Rate exceeded

2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:57 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:05:56 GMT
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: ddbea8db-767f-40f5-b6fb-f5892c007c36
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:57 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:05:57.595-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:05:57 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 3/25, error ThrottlingException: Rate exceeded

2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:02 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:06:02 GMT
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: b9d2fd13-faa8-4240-a027-0167a059df77
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:02 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:06:02.792-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:02 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 4/25, error ThrottlingException: Rate exceeded

2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:03 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:06:02 GMT
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: de7b6355-5b37-434f-a466-cfbaebe5e2f0
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:03 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:06:03.395-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:03 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 4/25, error ThrottlingException: Rate exceeded

2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:13 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:06:13 GMT
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 4e42c7c4-b41a-4d17-ad5a-beba43949070
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:13 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:06:13.447-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:13 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 5/25, error ThrottlingException: Rate exceeded

2020-09-03T20:06:20.417-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:20 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:06:20 GMT
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: a6de69d8-baf4-4833-9d14-6e813cdbf800
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:20 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:06:20.418-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:20 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 6/25, error ThrottlingException: Rate exceeded

2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:21 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:06:21 GMT
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: fbc7b921-2ec8-43d1-83b2-7f7fc932cc51
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:21 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:06:21.287-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:21 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 6/25, error ThrottlingException: Rate exceeded

2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:25 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:06:25 GMT
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: e331360b-8f30-4f68-85da-02cfced9948f
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:25 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:06:25.627-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:25 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 7/25, error ThrottlingException: Rate exceeded

2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:26 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:06:26 GMT
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 359a1989-85ee-436f-af49-a7fc2c176889
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:26 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:06:26.847-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:26 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 7/25, error ThrottlingException: Rate exceeded

2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:32 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:06:32 GMT
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 17dbd81f-bc7b-4989-8a4b-8b6e97142795
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:32 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:06:32.996-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:06:32 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 8/25, error ThrottlingException: Rate exceeded

2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:04 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:09:04 GMT
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 5af791f8-350a-4889-adcf-adaed00169e3
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:04 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:09:04.968-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:04 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:06 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:09:06 GMT
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 121b4ee6-7452-413e-9d51-32344fe46c93
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:06 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:09:06.866-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:06 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:08 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:09:07 GMT
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: a4dbd713-26e3-4258-b888-68b773cf155b
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:08 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:09:08.478-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:08 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:09 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:09:09 GMT
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 8df3c322-a1dc-4506-bfc2-bd018affbff9
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:09 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:09:09.463-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:09:09 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded

2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:25 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:11:25 GMT
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 15fdc7ae-2bec-43d2-9d9c-5ed055566edc
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:25 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:11:25.953-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:25 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 0/25, error ThrottlingException: Rate exceeded

2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:27 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:11:26 GMT
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 28b8c26b-7532-4a56-8f0a-cbaa277b54aa
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:27 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:11:27.367-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:27 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:28 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:11:28 GMT
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 7d700467-0671-46b4-ac53-eb589d9bfdcc
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:28 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:11:28.556-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:28 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:35 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:11:34 GMT
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: d9e30b63-e966-475e-9c55-70622376fa9b
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:35 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:11:35.039-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:11:35 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 3/25, error ThrottlingException: Rate exceeded

2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:25:58 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:25:58 GMT
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 9fab7b49-9208-4770-ab9e-d66ed3ba468a
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:25:58 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:25:58.857-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:25:58 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded

2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:03 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:41:02 GMT
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 72bcef68-40d9-457f-8e30-a355b7e53b0c
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:03 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:41:03.135-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:03 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:03 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:41:03 GMT
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 032fafd8-cd66-4396-ac4b-345c25b518d3
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:03 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:41:03.997-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:03 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 1/25, error ThrottlingException: Rate exceeded

2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:08 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:41:08 GMT
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: b88d1670-b7cd-469e-a896-8bd8bf560066
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:08 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:41:08.980-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:08 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 2/25, error ThrottlingException: Rate exceeded

2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:37 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:41:36 GMT
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 9dcaf168-e4c5-4ac0-bf41-6c545682781c
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:37 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:41:37.654-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:37 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 4/25, error ThrottlingException: Rate exceeded

2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:49 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:41:48 GMT
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 229a0eeb-15a3-4f05-8037-c9dc4d0dacb3
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:49 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:41:49.075-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:41:49 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 5/25, error ThrottlingException: Rate exceeded

2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:00 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:42:00 GMT
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: e6f64899-d983-412b-89e9-e23c5d4169ab
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:00 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:42:00.780-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:00 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 6/25, error ThrottlingException: Rate exceeded

2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:17 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:42:16 GMT
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 553cb71d-e863-4ec8-bac4-55609e85c436
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:17 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:42:17.283-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:17 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 7/25, error ThrottlingException: Rate exceeded

2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:28 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:42:27 GMT
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: 8f2e3b41-3e9c-4bb4-ae1f-7d08854bfc5e
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:28 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:42:28.406-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:28 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 8/25, error ThrottlingException: Rate exceeded

2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:39 [DEBUG] [aws-sdk-go] DEBUG: Response waf-regional/GetWebACLForResource Details:
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: ---[ RESPONSE ]--------------------------------------
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: HTTP/1.1 400 Bad Request
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Connection: close
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Length: 58
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Content-Type: application/x-amz-json-1.1
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: Date: Fri, 04 Sep 2020 00:42:39 GMT
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: X-Amzn-Requestid: c6ca65ae-c8d2-4db9-ab38-36cac3adf96d
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: -----------------------------------------------------
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:39 [DEBUG] [aws-sdk-go] {"__type":"ThrottlingException","message":"Rate exceeded"}
2020-09-03T20:42:39.641-0400 [DEBUG] plugin.terraform-provider-aws_v2.999.0: 2020/09/03 20:42:39 [DEBUG] [aws-sdk-go] DEBUG: Validate Response waf-regional/GetWebACLForResource failed, attempt 9/25, error ThrottlingException: Rate exceeded

The 2.999.0 provider was when I was trying out the retryer tweaks mentioned above

This particular API doesn't appear to have that header and is just returning generic bad requests errors (vs 429)

github-actions[bot] commented 2 years ago

Marking this issue as stale due to inactivity. This helps our maintainers find and focus on the active issues. If this issue receives no comments in the next 30 days it will automatically be closed. Maintainers can also remove the stale label.

If this issue was automatically closed and you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thank you!

github-actions[bot] commented 2 years ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.