I have the following conditional in an Ansible task:
when: ec2_tag_Name == 'testhost01'
It works fine, however I would like to match a wildcard on the ec2_tag_Name
field.
So something like this
when: ec2_tag_Name == 'testhost*'
The goal is to match anything like testhostx
testhost12
testhostABC
etc etc just anything matching testhost
at the start of the string.
Is this possible? Can't seem to get it working.
From Testing Strings:
In your case:
This works as well.
You can combine logical operators as well like and and or