fortinet-ansible-dev / ansible-galaxy-fortios-collection

GNU General Public License v3.0
84 stars 48 forks source link

Any way to append the address in address group #213

Closed foxpatil closed 1 year ago

foxpatil commented 1 year ago

I had successful playbook which creates address group and add one address object into that group, but i want to append the object in address list under same address group

MaxxLiu22 commented 1 year ago

Hi @foxpatil ,

We can use member operation to append objects into an existing item, we need to set member_path to the location where you want to append an object and set member_state to present, here I append a member "SSLVPN_TUNNEL_ADDR1" to a existing address group "test", you are free to use it, if you still have questions please let me know.

- hosts: fortigates
  collections:
  - fortinet.fortios
  connection: httpapi
  vars:
    vdom: root
    ansible_httpapi_use_ssl: true
    ansible_httpapi_validate_certs: false
    ansible_httpapi_port: 443
  tasks:
  - name: Configure IPv4 address groups.
    fortios_firewall_addrgrp:
      vdom: root
      state: present
      member_path: member:name
      member_state: present
      access_token: "j41kmh4Nrshg40f5GNmwnznpc3QfGr"
      firewall_addrgrp:
        member:
        - name: SSLVPN_TUNNEL_ADDR1
        name: test

Thanks, Maxx

JieX19 commented 1 year ago

I am closing the issue as it's resolved. Let us know if you have any questions.

foxpatil commented 1 year ago

Hello sir,

Can you help me out understad one more module.. Regarding the firmware upgrade

On Thu, 9 Feb, 2023, 12:08 PM JieX19, @.***> wrote:

Closed #213 https://github.com/fortinet-ansible-dev/ansible-galaxy-fortios-collection/issues/213 as completed.

— Reply to this email directly, view it on GitHub https://github.com/fortinet-ansible-dev/ansible-galaxy-fortios-collection/issues/213#event-8475980984, or unsubscribe https://github.com/notifications/unsubscribe-auth/A2HCPP2PMGY55XZURPXGWS3WWSGHJANCNFSM6AAAAAASMOFYQ4 . You are receiving this because you were mentioned.Message ID: <fortinet-ansible-dev/ansible-galaxy-fortios-collection/issue/213/issue_event/8475980984 @github.com>