azimuth-cloud / azimuth-caas-operator

K8s operator to create ansible based clusters using K8s CRDs
Apache License 2.0
1 stars 2 forks source link

Enable FQCN debug output #112

Closed jjo93sa closed 5 months ago

jjo93sa commented 5 months ago

When working on an Azimuth appliance, Ansible linting complains about:

  1. Using the freeform version of debug for the outputs task
  2. Not using the FQCN of the debug builtin

This PR addresses both issues, enabling output parsing when the appliance Ansible task looks like this:

- ansible.builtin.debug: 
    var: outputs 
  vars: 
    outputs: 
      cluster_access_ip: "{{ cluster_floating_ip_address | default(None) }}" 
  delegate_to: localhost