networktocode.nautobot.ipam_role (4.5.0) — module

Creates or removes ipam roles from Nautobot

| "added in version" 1.0.0 of networktocode.nautobot"

Authors: Mikhail Yohman (@FragmentedPacket)

Install collection

Install with ansible-galaxy collection install networktocode.nautobot:==4.5.0


Add to requirements.yml

  collections:
    - name: networktocode.nautobot
      version: 4.5.0

Description

Creates or removes ipam roles from Nautobot


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: "Test Nautobot module"
  connection: local
  hosts: localhost
  gather_facts: False
  tasks:
    - name: Create ipam role within Nautobot with only required information
      networktocode.nautobot.ipam_role:
        url: http://nautobot.local
        token: thisIsMyToken
        name: Test IPAM Role
        state: present

    - name: Delete ipam role within nautobot
      networktocode.nautobot.ipam_role:
        url: http://nautobot.local
        token: thisIsMyToken
        name: Test IPAM Role
        state: absent

Inputs

    
url:
    description:
    - 'The URL of the Nautobot instance resolvable by the Ansible host (for example: http://nautobot.example.com:8000)'
    required: true
    type: str

name:
    description:
    - Name of the ipam role to be created
    required: true
    type: str
    version_added: 3.0.0
    version_added_collection: networktocode.nautobot

slug:
    description:
    - The slugified version of the name or custom slug.
    - This is auto-generated following Nautobot rules if not provided
    required: false
    type: str
    version_added: 3.0.0
    version_added_collection: networktocode.nautobot

state:
    choices:
    - absent
    - present
    default: present
    description:
    - Use C(present) or C(absent) for adding or removing.
    type: str

token:
    description:
    - The token created within Nautobot to authorize API access
    required: true
    type: str

weight:
    description:
    - The weight of the ipam role to be created
    required: false
    type: int
    version_added: 3.0.0
    version_added_collection: networktocode.nautobot

api_version:
    description:
    - API Version Nautobot REST API
    required: false
    type: str
    version_added: 4.1.0
    version_added_collection: networktocode.nautobot

query_params:
    description:
    - This can be used to override the specified values in ALLOWED_QUERY_PARAMS that is
      defined
    - in plugins/module_utils/utils.py and provides control to users on what may make
    - an object unique in their environment.
    elements: str
    required: false
    type: list
    version_added: 3.0.0
    version_added_collection: networktocode.nautobot

validate_certs:
    default: true
    description:
    - If C(no), SSL certificates will not be validated. This should only be used on personally
      controlled sites using self-signed certificates.
    required: false
    type: raw

Outputs

msg:
  description: Message indicating failure or info about what has been achieved
  returned: always
  type: str
role:
  description: Serialized object as created or already existent within Nautobot
  returned: on creation
  type: dict