d_strobel.windows.dhcp_failover_v4 (1.4.0) — module

Add or remove an IPv4 failover.

Authors: Dustin Strobel (@d-strobel)

Install collection

Install with ansible-galaxy collection install d_strobel.windows:==1.4.0


Add to requirements.yml

  collections:
    - name: d_strobel.windows
      version: 1.4.0

Description

Add or remove an IPv4 failover.

Inputs

    
mode:
    choices:
    - loadbalance
    - hotstandby
    default: loadbalance
    description:
    - Define the mode for the failover relationship.
    required: false
    type: str

name:
    description:
    - Specify the name of the dhcp failover.
    required: true
    type: str

state:
    choices:
    - absent
    - present
    default: present
    description:
    - Set to C(present) to ensure the failover is present.
    - Set to C(absent) to ensure the failover is removed.
    type: str

scopes:
    description:
    - Specify a list of scopes to the failover.
    elements: str
    required: true
    type: list

server_role:
    choices:
    - active
    - standby
    default: active
    description:
    - Define the server_role for the specified server.
    required: false
    type: str

shared_secret:
    description:
    - Specify a shared secret for the failover relationship.
    required: false
    type: str

partner_server:
    description:
    - Specify the name of the failover partner server.
    required: true
    type: str

loadbalance_percent:
    default: 50
    description:
    - Specify the percentage of DHCP client requests which should be served by the local
      DHCP server service.
    required: false
    type: int

shared_secret_update:
    choices:
    - always
    - never
    description:
    - Define how the shared secret should be updated.
    required: false
    type: str