ngine-io / ansible-collection-cloudstack

CloudStack Ansible Collections
https://galaxy.ansible.com/ngine_io/cloudstack
GNU General Public License v3.0
21 stars 28 forks source link

Vlan ip range: specify pod #4

Closed fprojetto closed 4 years ago

fprojetto commented 4 years ago

Feature request It should be possible to specify the pod while creating a vlan ip range.

Reference: http://cloudstack.apache.org/api/apidocs-4.14/apis/createVlanIpRange.html

Current behaviour It's not possible to specify the pod.

Desired behaviour

cs_vlan_ip_range:
  network: "{{ guest_network_name }}"
  start_ip: "{{ vm_start_ip }}"
  end_ip: "{{ vm_end_ip }}"
  gateway: "{{ gateway }}"
  netmask: "{{ netmask }}"
  zone: "{{ zone_name }}"
  pod: "{{ pod_name }}"
  state: present

Environment Running the version of the module provided with ansible 2.9.6.

resmo commented 4 years ago

Make sense, do you like to provide a patch?