ansible.netcommon.grpc_config module – Fetch configuration/state data from gRPC enabled target hosts.
Note
This module is part of the ansible.netcommon collection (version 7.1.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install ansible.netcommon
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: ansible.netcommon.grpc_config
.
New in ansible.netcommon 3.1.0
Synopsis
gRPC is a high performance, open-source universal RPC framework.
This module allows the user to append configs to an existing configuration in a gRPC enabled devices.
Note
This module has a corresponding action plugin.
Requirements
The below requirements are needed on the host that executes this module.
grpcio
protobuf
Parameters
Parameter |
Comments |
---|---|
This argument will cause the module to create a full backup of the current Choices:
|
|
This is a dict object containing configurable options related to backup file path. The value of this option is read only when |
|
This option provides the path ending with directory name in which the backup configuration file will be stored. If the directory does not exist it will be first created and the filename is either the value of |
|
The filename to be used to store the backup configuration. If the filename is not given it will be generated based on the hostname, current time and date in format defined by <hostname>_config.<current-date>@<current-time> |
|
This option specifies the string which acts as a filter to restrict the portions of the data to be retrieved from the target host device. If this option is not specified the entire configuration or state data is returned in response provided it is supported by target host. |
|
action to be performed |
Notes
Note
This module requires the gRPC system service be enabled on the target host being managed.
This module supports the use of connection=connection=ansible.netcommon.grpc
This module requires the value of ‘ansible_network_os’ or ‘grpc_type’ configuration option (refer ansible.netcommon.grpc connection plugin documentation) be defined as an inventory variable.
Tested against iosxrv 9k version 6.1.2.
Examples
- name: Merge static route config
ansible.netcommon.grpc_config:
config:
Cisco-IOS-XR-ip-static-cfg:router-static:
default-vrf:
address-family:
vrfipv4:
vrf-unicast:
vrf-prefixes:
vrf-prefix:
- prefix: "1.2.3.6"
prefix-length: 32
vrf-route:
vrf-next-hop-table:
vrf-next-hop-next-hop-address:
- next-hop-address: "10.0.2.2"
state: merged
- name: Merge bgp config
ansible.netcommon.grpc_config:
config: "{{ lookup('file', 'bgp.json') }}"
state: merged
- name: Find diff
diff: true
ansible.netcommon.grpc_config:
config: "{{ lookup('file', 'bgp_start.yml') }}"
state: merged
- name: Backup running config
ansible.netcommon.grpc_config:
backup: true
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
The full path to the backup file Returned: when backup is yes Sample: |
|
If –diff option in enabled while running, the before and after configuration change are returned as part of before and after key. Returned: when diff is enabled |
|
The raw string containing response object received from the gRPC server. Returned: error mesage, when failure happens. empty , when the operation is successful Sample: |
|
The value of stdout split into a list Returned: always apart from low-level errors (such as action plugin) Sample: |