Eimantas Gecas
Eimantas Gecas
Seems like it's using string.Match to do the matching, which uses shell syntax for the matching This should move to using a regex or something to allow for usable exclude...
using PAGERDUTY_TOKEN would mean defining a provider like: ```hcl provider "pagerduty" {} ``` which fails as `token` is a required parameter
I didn't explain myself well What I meant is that, if the tags block contains any of those values (null, variable, locals, datasource), tflint skips evaluation of that tags block...
Someone call gödel
@ewbankkit thanks for having a look at this I modified the post to include an attachment of the code let me know if there's anything else I can help with...
+1 ran into this today, very annoying
the provider needs to either not use v4 api, which is probably not wise long-term or, rethink the RateLimitTransport
@jcudit thanks for that set `write_delay_ms` to 200, which has on average sped up our plan times 2x Lowering this value further yields marginal gains (100ms = ~6m30s) However, while...
Second. Here's where I'm struggling; ```hcl locals { service_linked_roles_file = "${path.module}/service-linked-roles.json" service_linked_roles = jsondecode(file(local.service_linked_roles_file)) service_linked_roles_service_principals = keys(local.service_linked_roles) service_linked_roles_to_provision = var.service_linked_roles_to_provision == ["*"] ? local.service_linked_roles_service_principals : var.service_linked_roles_to_provision } data "aws_caller_identity" "this"...
> Hey @lijok 👋 Thank you for taking the time to raise this! While I don't have all of the context, given that we mention this limitation in the documentation,...