security_profile_group - Profile Group Resource +++++++++++++++++++++++++++++++++++++++++++++++ .. versionadded:: 1.0.0 .. contents:: :local: :depth: 1 Synopsis -------- Profile Group Resource. Use API "/resource-api/v2/security/profile-group/{direction}". Requirements ------------ The below requirements are needed on the host that executes this module. - ansible>=2.17.0 Parameters ---------- .. raw:: html Examples ------------- .. code-block:: yaml - name: Security profile group hosts: fortisase gather_facts: false vars: direction: "outbound-profiles" # outbound-profiles or internal-profiles profile_group: "profile_ansible" tasks: - name: Create/Update security profile group fortinet.fortisase.security_profile_group: params: direction: "{{ direction }}" primary_key: "{{ profile_group }}" - name: Delete security profile group fortinet.fortisase.security_profile_group: state: absent params: direction: "{{ direction }}" primary_key: "{{ profile_group }}" Return Values ------------- .. raw:: html Authors ------- - Xinwei Du (@dux-fortinet)