RB
RB
>You can already have custom run steps that'll allow you to have different workflows you can transition between so the fallback case would be covered there. As described in the...
@mitar what about just the `errors` package? How does it compare? I'm hesitant to push this project to replace an archived dependency for one that's uncommonly used (judging by project...
This is pretty cool. Renovate now shows "abandoned dependencies" and we have a lot. We can use this method going forward instead of doing it manually like I did above....
See https://github.com/cloudposse/terraform-aws-dynamodb/blob/f312393109ce3d8688e75c671c6746a9fc4a49aa/context.tf#L201-L209 Try setting the following `regex_replace_chars` and see if it makes a difference ```hcl module "" { # ... regex_replace_chars = "/[^a-zA-Z0-9_-]/" # ... } ```
Seems like this is functioning as per the terraform docs > https://developer.hashicorp.com/terraform/language/expressions/type-constraints There doesn't seem to be a way to explicitly set the nested key to null without it getting...
I just saw this error with the `mark-for-op` action for the `ebs` resource. I'd prefer it if the volume doesn't exist, skip it if it doesn't exist. > [ERROR] 2020-03-13T06:32:41.708Z...
The easiest fix may be to wrap a `try` around each `create_tag` call https://github.com/cloud-custodian/cloud-custodian/blob/00906a061341688cf7d19245d3a0126422ccfa82/c7n/resources/ebs.py#L536-L537 https://github.com/cloud-custodian/cloud-custodian/blob/00906a061341688cf7d19245d3a0126422ccfa82/c7n/resources/ebs.py#L1055-L1061 https://github.com/cloud-custodian/cloud-custodian/blob/00906a061341688cf7d19245d3a0126422ccfa82/c7n/resources/ebs.py#L1280-L1283 https://github.com/cloud-custodian/cloud-custodian/blob/00906a061341688cf7d19245d3a0126422ccfa82/c7n/resources/ebs.py#L1294-L1297 https://github.com/cloud-custodian/cloud-custodian/blob/00906a061341688cf7d19245d3a0126422ccfa82/c7n/resources/ebs.py#L1308-L1311
What's interesting is that there are multiple catches for `InvalidVolume.NotFound` so there must be one area that's missing.