In Ansible, if I try to use a variable as a parameter name, or a key name, 
it is never resolved. For example, if I have `{{ some_var }}: true`, or:

    template: "{{ resolve_me_to_src }}": "some_src"

the variables will just be used literally and never resolve. My specific 
use case is using this with the ec2 module, where some of my tag names are 
stored as variables:

- name: Provision a set of instances
      ec2:
        group: "{{ aws_security_group }}"
        instance_type: "{{ aws_instance_type }}"
        image: "{{ aws_ami_id }}"
        region: "{{ aws_region }}"
        vpc_subnet_id: "{{ aws_vpc_subnet_id }}"
        key_name: "{{ aws_key_name }}"
        wait: true
        count: "{{ num_machines }}"
        instance_tags: { "{{ some_tag }}": "{{ some_value }}", "{{ 
other_tag }}": "{{ other_value }}" }
      
Is there any way around this? Can I mark that I want to force evaluation 
somehow?

Eli

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/9bba1874-3078-4c19-b09a-d041c2a41952%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to