addSecurityZone

The addSecurityZone operation handles configuration related to SecurityZone model. 

Data Parameters

Parameter Required Type Description
name False string A string containing the name of the object, up to 48 characters in length
Field level constraints: cannot be null, length must be between 0 and 48 (inclusive), must match pattern ^[a-zA-Z0-9][a-zA-Z0-9.+-]*, cannot have HTML. (Note: Additional constraints might exist)
description False string A string containing a description of the object, up to 200 characters in length
Field level constraints: length must be between 0 and 200 (inclusive), cannot have HTML. (Note: Additional constraints might exist)
interfaces False [object] A list of interfaces used inside this security zone
Allowed types are: [PhysicalInterface, SubInterface]
type False string A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name.

Example

- name: Execute 'addSecurityZone' operation
  ftd_configuration:
    operation: "addSecurityZone"
    data:
        name: "{{ name }}"
        description: "{{ description }}"
        interfaces: "{{ interfaces }}"
        type: "{{ type }}"