Florian Lambert
Florian Lambert
Same issue, Im using LaunchTemplate with ASG ``` Retrieving AMIs to clean ... Traceback (most recent call last): File "/usr/bin/amicleaner", line 11, in load_entry_point('aws-amicleaner', 'console_scripts', 'amicleaner')() File "/aws-amicleaner/amicleaner/cli.py", line 195,...
@tumf did you had time to check ?
I see you are exposing condition with variable. I guess there is an issue. We shouldn't allow that since you can have `condition = var.foo` but only blocks `condition {}`...
Ok so if it is on purpose, no workaround :) Instead of ``` condition = var.aws_alb_listener_rule_arn_aws_elasticloadbalancing_eu_central_1_999999999999_listener_rule_xyz_xyz_xyz_1b2n3m4n5v69x8y6_98c7x65y42j21l4j_987sdf654sdg3g6n_condition ``` it should look like ``` condition { path_pattern { values = var.foo_condition_path_pattern_values0 }...
looks to be only when your rule doesn't have `condition`
linked to https://github.com/concourse/git-resource/pull/223
No issue on my side short_ref and commit_message are present ``` ls .git -1 FETCH_HEAD HEAD branches commit_message committer config description hooks index info logs objects packed-refs ref refs short_ref...
Basically it only do a `git tag --list $tag_filter` https://github.com/concourse/git-resource/blob/master/assets/check#L78 So you should be able to do something like `tag_filter: "abc-* bcd-* cde-*"`
@gowrisankar22 Here is how tags are checked by default `git tag --list "$tag_filter" --sort=creatordate | tail -1` So you might be able to put `tag_filter: "*"` to get the latest...