codeaffen.phpipam.device_type (1.7.0) — module

Manage device types

| "added in version" 0.5.0 of codeaffen.phpipam"

Authors: Christian Meißner (@cmeissner)

Install collection

Install with ansible-galaxy collection install codeaffen.phpipam:==1.7.0


Add to requirements.yml

  collections:
    - name: codeaffen.phpipam
      version: 1.7.0

Description

create, update and delete device types


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: "Create device type"
  codeaffen.phpipam.device_type:
    username: "admin"
    password: "s3cr3t"
    server_url: "https://ipam.example.com"
    name: "USP"
    description: "universal power supply"
    description:
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: "Remove device type"
  codeaffen.phpipam.device_type:
    username: "admin"
    password: "s3cr3t"
    server_url: "https://ipam.example.com"
    name: "USP"
    state: absent

Inputs

    
name:
    description: Name of the given device type
    required: true
    type: str

state:
    choices:
    - present
    - absent
    default: present
    description: State of the entity
    type: str

app_id:
    default: ansible
    description: API app name
    required: false
    type: str

password:
    description: Password of the user to access phpIPAM server
    required: true
    type: str

username:
    description: Username to access phpIPAM server
    required: true
    type: str

server_url:
    description: URL of the phpIPAM server
    required: true
    type: str

description:
    description: A descriptive text for that entity
    required: false
    type: str

validate_certs:
    default: true
    description: Is the TLS certificate of the phpIPAM server verified or not.
    required: false
    type: bool