nsxt_cluster_profiles – Create a Cluster Profile

New in version 2.7.

Synopsis

  • Create a cluster profile. The resource_type is required.

Parameters

Parameter Choices/Defaults Comments
description
string
Description of the resource
display_name
string / required
Display name
hostname
string / required
Deployed NSX manager hostname.
password
string / required
The password to authenticate with the NSX manager.
state
- / required
    Choices:
  • present
  • absent
State can be either 'present' or 'absent'. 'present' is used to create or update resource. 'absent' is used to delete resource.
username
string / required
The username to authenticate with the NSX manager.

Examples

- name: Create Cluster Profiles
  nsxt_cluster_profiles:
    hostname: "10.192.167.137"
    username: "admin"
    password: "Admin!23Admin"
    validate_certs: False `
    resource_type: EdgeHighAvailabilityProfile
    display_name: edge-cluster-profile-East
    bfd_probe_interval: 1000
    bfd_declare_dead_multiple: 3
    bfd_allowed_hops: 1
    state: present

Status

  • This module is not guaranteed to have a backwards compatible interface. [preview]

  • This module is maintained by the Ansible Community. [community]

Authors

  • Kommireddy Akhilesh