cisco.mso.mso_schema_site_vrf_region_hub_network – Manage site-local VRF region hub network in schema template¶
Note
This plugin is part of the cisco.mso collection (version 1.1.0).
To install it use: ansible-galaxy collection install cisco.mso
.
To use it in a playbook, specify: cisco.mso.mso_schema_site_vrf_region_hub_network
.
Synopsis¶
Manage site-local VRF region hub network in schema template on Cisco ACI Multi-Site.
The ‘Hub Network’ feature was introduced in Multi-Site Orchestrator (MSO) version 3.0(1) for AWS and version 3.0(2) for Azure.
Requirements¶
The below requirements are needed on the host that executes this module.
Multi Site Orchestrator v2.1 or newer
Parameters¶
Notes¶
Note
The ACI MultiSite PATCH API has a deficiency requiring some objects to be referenced by index. This can cause silent corruption on concurrent access when changing/removing on object as the wrong object may be referenced. This module is affected by this deficiency.
Please read the Cisco ACI Guide for more detailed information on how to manage your ACI infrastructure using Ansible.
This module was written to support ACI Multi Site Orchestrator v2.1 or newer. Some or all functionality may not work on earlier versions.
See Also¶
See also
- cisco.mso.mso_schema_site_vrf_region
The official documentation on the cisco.mso.mso_schema_site_vrf_region module.
- cisco.mso.mso_schema_template_vrf
The official documentation on the cisco.mso.mso_schema_template_vrf module.
Examples¶
- name: Add a new site VRF region hub network
cisco.mso.mso_schema_site_vrf_region_hub_network:
host: mso_host
username: admin
password: SomeSecretPassword
schema: Schema1
site: Site1
template: Template1
vrf: VRF1
region: us-west-1
hub_network:
name: hub-default
tenant: infra
state: present
delegate_to: localhost
- name: Remove a site VRF region hub network
cisco.mso.mso_schema_site_vrf_region_hub_network:
host: mso_host
username: admin
password: SomeSecretPassword
schema: Schema1
site: Site1
template: Template1
vrf: VRF1
state: absent
delegate_to: localhost
- name: Query site VRF region hub network
cisco.mso.mso_schema_site_vrf_region_hub_network:
host: mso_host
username: admin
password: SomeSecretPassword
schema: Schema1
site: Site1
template: Template1
vrf: VRF1
region: us-west-1
state: query
delegate_to: localhost
register: query_result
Authors¶
Cindy Zhao (@cizhao)