Caleb McKay
Caleb McKay
I'm guessing the issue is due to the conditional statements in the lookups. For example, at [line 204](https://github.com/umotif-public/terraform-aws-waf-webaclv2/blob/main/main.tf#L204): ``` dynamic "body" { for_each = length(lookup(field_to_match.value, "body", {})) == 0 ?...
Well now I feel dumb. I was using `regex_pattern_set_reference_statement` in my actual usage, and then simplified to a `byte_match_statement` for the reproducible example. But the examples for `byte_match_statement` include [an...
+1 on this. This would also help with providing updated keys when old ones expire. For example, at time of writing, the docs pages [here](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-source-install.html#source-getting-started-install-reqs) and [here](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-version.html) have old keys...
Also encountering this error when using "kubernetes_manifest" to create an `argoproj.io/v1alpha1` `ApplicationSet` in EKS 1.32. Rolling the provider back to v2.29.0 fixed the issue, so it seems to have been...
It looks like all of admin.go is due for a rewrite - there's several API methods being called that are no longer listed in the docs, and there's no tests...
Running into this issue as well. We're using SSO and cross-account roles to access our EKS clusters, so it's frustrating when we have credentials from one account being passed to...
A little late, but the `uploadFileV2` function uses the non-deprecated method. Docs: https://pkg.go.dev/github.com/slack-go/slack#Client.UploadFileV2
Also ran into this issue when restoring from a snapshot on ansible-core 2.15.12. In researching, this appears to be a limitation of boto3 and the RDS API, as none of...