networktocode.nautobot.region (4.5.0) — module

Creates or removes regions 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 regions from Nautobot


Requirements

Usage examples

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

    - name: Delete tenant within nautobot
      networktocode.nautobot.region:
        url: http://nautobot.local
        token: thisIsMyToken
        name: Tenant Group ABC
        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 region 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

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

parent_region:
    description:
    - The parent region this region should be tied to
    required: false
    type: raw
    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
region:
  description: Serialized object as created or already existent within Nautobot
  returned: on creation
  type: dict