phpipam-ansible-modules icon indicating copy to clipboard operation
phpipam-ansible-modules copied to clipboard

add location_id

Open urskog84 opened this issue 11 months ago • 1 comments

lmost every object in the phpIPAM database have the option to set a "location" that's correspond to the ID of the location.

would be nice to have that available int the modules.

address device subnet

Example

- name: "Create device"
  codeaffen.phpipam.device:
    username: "admin"
    password: "s3cr3t"
    server_url: "https://ipam.example.com"
    hostname: "leaf-example-01"
    ipaddress: "192.0.2.222"
    location_id: 53          <--- New
    sections:
      - Example Inc.
      - DEVOPS department
    state: present

urskog84 avatar Jan 06 '25 08:01 urskog84