kenmoini.phpipam.address_info (1.0.2) — module

Get IP Address Info from phpIPAM

| "added in version" 2.11 of kenmoini.phpipam"

Authors: Ken Moini (@kenmoini)

preview | supported by community

Install collection

Install with ansible-galaxy collection install kenmoini.phpipam:==1.0.2


Add to requirements.yml

  collections:
    - name: kenmoini.phpipam
      version: 1.0.2

Description

Find information about an IP Address in phpIPAM

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Get the information about a specific IP Address
- name: Get the information about a specific IP Address
  kenmoini.phpipam.address_info:
    ip: 192.168.42.1
    phpipam_url: https://phpipam.example.com
    phpipam_app_id: 1234567890
    phpipam_app_code: 1234567890
  register: address_info

Inputs

    
ip:
    aliases:
    - address
    - ip_address
    description:
    - This is the IP Address you want to get information about
    required: true
    type: str

phpipam_url:
    description:
    - This is the URL of your phpIPAM instance
    required: true
    type: str

phpipam_app_id:
    description:
    - This is the app ID for your phpIPAM instance
    required: true
    type: str

phpipam_app_code:
    description:
    - This is the app code for your phpIPAM instance
    required: true
    type: str

phpipam_skip_tls_verify:
    aliases:
    - skip_tls_verify
    default: false
    description:
    - Whether or not to skip TLS verification
    required: false
    type: bool

Outputs

address_info:
  description: The data returned about the IP Address(es)
  returned: always
  type: object