1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectGlobalIpsSensorOverride
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectGlobalIpsSensorOverride

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    ObjectGlobal IpsSensorOverride

    This resource is a sub resource for variable override of resource fortimanager.ObjectGlobalIpsSensor. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • exempt_ip: fortimanager_object_global_ips_sensor_override_exemptip

    Create ObjectGlobalIpsSensorOverride Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ObjectGlobalIpsSensorOverride(name: string, args: ObjectGlobalIpsSensorOverrideArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectGlobalIpsSensorOverride(resource_name: str,
                                      args: ObjectGlobalIpsSensorOverrideInitArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectGlobalIpsSensorOverride(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      sensor: Optional[str] = None,
                                      object_global_ips_sensor_override_id: Optional[str] = None,
                                      dynamic_sort_subtable: Optional[str] = None,
                                      exempt_ips: Optional[Sequence[ObjectGlobalIpsSensorOverrideExemptIpArgs]] = None,
                                      log: Optional[str] = None,
                                      log_packet: Optional[str] = None,
                                      action: Optional[str] = None,
                                      quarantine: Optional[str] = None,
                                      quarantine_expiry: Optional[float] = None,
                                      quarantine_log: Optional[str] = None,
                                      rule_id: Optional[float] = None,
                                      scopetype: Optional[str] = None,
                                      adom: Optional[str] = None,
                                      status: Optional[str] = None)
    func NewObjectGlobalIpsSensorOverride(ctx *Context, name string, args ObjectGlobalIpsSensorOverrideArgs, opts ...ResourceOption) (*ObjectGlobalIpsSensorOverride, error)
    public ObjectGlobalIpsSensorOverride(string name, ObjectGlobalIpsSensorOverrideArgs args, CustomResourceOptions? opts = null)
    public ObjectGlobalIpsSensorOverride(String name, ObjectGlobalIpsSensorOverrideArgs args)
    public ObjectGlobalIpsSensorOverride(String name, ObjectGlobalIpsSensorOverrideArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectGlobalIpsSensorOverride
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ObjectGlobalIpsSensorOverrideArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ObjectGlobalIpsSensorOverrideInitArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ObjectGlobalIpsSensorOverrideArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectGlobalIpsSensorOverrideArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectGlobalIpsSensorOverrideArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var objectGlobalIpsSensorOverrideResource = new Fortimanager.ObjectGlobalIpsSensorOverride("objectGlobalIpsSensorOverrideResource", new()
    {
        Sensor = "string",
        ObjectGlobalIpsSensorOverrideId = "string",
        DynamicSortSubtable = "string",
        ExemptIps = new[]
        {
            new Fortimanager.Inputs.ObjectGlobalIpsSensorOverrideExemptIpArgs
            {
                DstIp = "string",
                Id = 0,
                SrcIp = "string",
            },
        },
        Log = "string",
        LogPacket = "string",
        Action = "string",
        Quarantine = "string",
        QuarantineExpiry = 0,
        QuarantineLog = "string",
        RuleId = 0,
        Scopetype = "string",
        Adom = "string",
        Status = "string",
    });
    
    example, err := fortimanager.NewObjectGlobalIpsSensorOverride(ctx, "objectGlobalIpsSensorOverrideResource", &fortimanager.ObjectGlobalIpsSensorOverrideArgs{
    Sensor: pulumi.String("string"),
    ObjectGlobalIpsSensorOverrideId: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    ExemptIps: .ObjectGlobalIpsSensorOverrideExemptIpArray{
    &.ObjectGlobalIpsSensorOverrideExemptIpArgs{
    DstIp: pulumi.String("string"),
    Id: pulumi.Float64(0),
    SrcIp: pulumi.String("string"),
    },
    },
    Log: pulumi.String("string"),
    LogPacket: pulumi.String("string"),
    Action: pulumi.String("string"),
    Quarantine: pulumi.String("string"),
    QuarantineExpiry: pulumi.Float64(0),
    QuarantineLog: pulumi.String("string"),
    RuleId: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Status: pulumi.String("string"),
    })
    
    var objectGlobalIpsSensorOverrideResource = new ObjectGlobalIpsSensorOverride("objectGlobalIpsSensorOverrideResource", ObjectGlobalIpsSensorOverrideArgs.builder()
        .sensor("string")
        .objectGlobalIpsSensorOverrideId("string")
        .dynamicSortSubtable("string")
        .exemptIps(ObjectGlobalIpsSensorOverrideExemptIpArgs.builder()
            .dstIp("string")
            .id(0)
            .srcIp("string")
            .build())
        .log("string")
        .logPacket("string")
        .action("string")
        .quarantine("string")
        .quarantineExpiry(0)
        .quarantineLog("string")
        .ruleId(0)
        .scopetype("string")
        .adom("string")
        .status("string")
        .build());
    
    object_global_ips_sensor_override_resource = fortimanager.ObjectGlobalIpsSensorOverride("objectGlobalIpsSensorOverrideResource",
        sensor="string",
        object_global_ips_sensor_override_id="string",
        dynamic_sort_subtable="string",
        exempt_ips=[{
            "dst_ip": "string",
            "id": 0,
            "src_ip": "string",
        }],
        log="string",
        log_packet="string",
        action="string",
        quarantine="string",
        quarantine_expiry=0,
        quarantine_log="string",
        rule_id=0,
        scopetype="string",
        adom="string",
        status="string")
    
    const objectGlobalIpsSensorOverrideResource = new fortimanager.ObjectGlobalIpsSensorOverride("objectGlobalIpsSensorOverrideResource", {
        sensor: "string",
        objectGlobalIpsSensorOverrideId: "string",
        dynamicSortSubtable: "string",
        exemptIps: [{
            dstIp: "string",
            id: 0,
            srcIp: "string",
        }],
        log: "string",
        logPacket: "string",
        action: "string",
        quarantine: "string",
        quarantineExpiry: 0,
        quarantineLog: "string",
        ruleId: 0,
        scopetype: "string",
        adom: "string",
        status: "string",
    });
    
    type: fortimanager:ObjectGlobalIpsSensorOverride
    properties:
        action: string
        adom: string
        dynamicSortSubtable: string
        exemptIps:
            - dstIp: string
              id: 0
              srcIp: string
        log: string
        logPacket: string
        objectGlobalIpsSensorOverrideId: string
        quarantine: string
        quarantineExpiry: 0
        quarantineLog: string
        ruleId: 0
        scopetype: string
        sensor: string
        status: string
    

    ObjectGlobalIpsSensorOverride Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ObjectGlobalIpsSensorOverride resource accepts the following input properties:

    Sensor string
    Sensor.
    Action string
    Action. Valid values: pass, block, reset.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExemptIps List<ObjectGlobalIpsSensorOverrideExemptIp>
    Exempt-Ip. The structure of exempt_ip block is documented below.
    Log string
    Log. Valid values: disable, enable.
    LogPacket string
    Log-Packet. Valid values: disable, enable.
    ObjectGlobalIpsSensorOverrideId string
    an identifier for the resource with format {{rule_id}}.
    Quarantine string
    Quarantine. Valid values: none, attacker, both, interface.
    QuarantineExpiry double
    Quarantine-Expiry.
    QuarantineLog string
    Quarantine-Log. Valid values: disable, enable.
    RuleId double
    Rule-Id.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Status string
    Status. Valid values: disable, enable.
    Sensor string
    Sensor.
    Action string
    Action. Valid values: pass, block, reset.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExemptIps []ObjectGlobalIpsSensorOverrideExemptIpArgs
    Exempt-Ip. The structure of exempt_ip block is documented below.
    Log string
    Log. Valid values: disable, enable.
    LogPacket string
    Log-Packet. Valid values: disable, enable.
    ObjectGlobalIpsSensorOverrideId string
    an identifier for the resource with format {{rule_id}}.
    Quarantine string
    Quarantine. Valid values: none, attacker, both, interface.
    QuarantineExpiry float64
    Quarantine-Expiry.
    QuarantineLog string
    Quarantine-Log. Valid values: disable, enable.
    RuleId float64
    Rule-Id.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Status string
    Status. Valid values: disable, enable.
    sensor String
    Sensor.
    action String
    Action. Valid values: pass, block, reset.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exemptIps List<ObjectGlobalIpsSensorOverrideExemptIp>
    Exempt-Ip. The structure of exempt_ip block is documented below.
    log String
    Log. Valid values: disable, enable.
    logPacket String
    Log-Packet. Valid values: disable, enable.
    objectGlobalIpsSensorOverrideId String
    an identifier for the resource with format {{rule_id}}.
    quarantine String
    Quarantine. Valid values: none, attacker, both, interface.
    quarantineExpiry Double
    Quarantine-Expiry.
    quarantineLog String
    Quarantine-Log. Valid values: disable, enable.
    ruleId Double
    Rule-Id.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status String
    Status. Valid values: disable, enable.
    sensor string
    Sensor.
    action string
    Action. Valid values: pass, block, reset.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exemptIps ObjectGlobalIpsSensorOverrideExemptIp[]
    Exempt-Ip. The structure of exempt_ip block is documented below.
    log string
    Log. Valid values: disable, enable.
    logPacket string
    Log-Packet. Valid values: disable, enable.
    objectGlobalIpsSensorOverrideId string
    an identifier for the resource with format {{rule_id}}.
    quarantine string
    Quarantine. Valid values: none, attacker, both, interface.
    quarantineExpiry number
    Quarantine-Expiry.
    quarantineLog string
    Quarantine-Log. Valid values: disable, enable.
    ruleId number
    Rule-Id.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status string
    Status. Valid values: disable, enable.
    sensor str
    Sensor.
    action str
    Action. Valid values: pass, block, reset.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exempt_ips Sequence[ObjectGlobalIpsSensorOverrideExemptIpArgs]
    Exempt-Ip. The structure of exempt_ip block is documented below.
    log str
    Log. Valid values: disable, enable.
    log_packet str
    Log-Packet. Valid values: disable, enable.
    object_global_ips_sensor_override_id str
    an identifier for the resource with format {{rule_id}}.
    quarantine str
    Quarantine. Valid values: none, attacker, both, interface.
    quarantine_expiry float
    Quarantine-Expiry.
    quarantine_log str
    Quarantine-Log. Valid values: disable, enable.
    rule_id float
    Rule-Id.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status str
    Status. Valid values: disable, enable.
    sensor String
    Sensor.
    action String
    Action. Valid values: pass, block, reset.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exemptIps List<Property Map>
    Exempt-Ip. The structure of exempt_ip block is documented below.
    log String
    Log. Valid values: disable, enable.
    logPacket String
    Log-Packet. Valid values: disable, enable.
    objectGlobalIpsSensorOverrideId String
    an identifier for the resource with format {{rule_id}}.
    quarantine String
    Quarantine. Valid values: none, attacker, both, interface.
    quarantineExpiry Number
    Quarantine-Expiry.
    quarantineLog String
    Quarantine-Log. Valid values: disable, enable.
    ruleId Number
    Rule-Id.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status String
    Status. Valid values: disable, enable.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectGlobalIpsSensorOverride resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ObjectGlobalIpsSensorOverride Resource

    Get an existing ObjectGlobalIpsSensorOverride resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ObjectGlobalIpsSensorOverrideState, opts?: CustomResourceOptions): ObjectGlobalIpsSensorOverride
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            exempt_ips: Optional[Sequence[ObjectGlobalIpsSensorOverrideExemptIpArgs]] = None,
            log: Optional[str] = None,
            log_packet: Optional[str] = None,
            object_global_ips_sensor_override_id: Optional[str] = None,
            quarantine: Optional[str] = None,
            quarantine_expiry: Optional[float] = None,
            quarantine_log: Optional[str] = None,
            rule_id: Optional[float] = None,
            scopetype: Optional[str] = None,
            sensor: Optional[str] = None,
            status: Optional[str] = None) -> ObjectGlobalIpsSensorOverride
    func GetObjectGlobalIpsSensorOverride(ctx *Context, name string, id IDInput, state *ObjectGlobalIpsSensorOverrideState, opts ...ResourceOption) (*ObjectGlobalIpsSensorOverride, error)
    public static ObjectGlobalIpsSensorOverride Get(string name, Input<string> id, ObjectGlobalIpsSensorOverrideState? state, CustomResourceOptions? opts = null)
    public static ObjectGlobalIpsSensorOverride get(String name, Output<String> id, ObjectGlobalIpsSensorOverrideState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectGlobalIpsSensorOverride    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Action string
    Action. Valid values: pass, block, reset.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExemptIps List<ObjectGlobalIpsSensorOverrideExemptIp>
    Exempt-Ip. The structure of exempt_ip block is documented below.
    Log string
    Log. Valid values: disable, enable.
    LogPacket string
    Log-Packet. Valid values: disable, enable.
    ObjectGlobalIpsSensorOverrideId string
    an identifier for the resource with format {{rule_id}}.
    Quarantine string
    Quarantine. Valid values: none, attacker, both, interface.
    QuarantineExpiry double
    Quarantine-Expiry.
    QuarantineLog string
    Quarantine-Log. Valid values: disable, enable.
    RuleId double
    Rule-Id.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sensor string
    Sensor.
    Status string
    Status. Valid values: disable, enable.
    Action string
    Action. Valid values: pass, block, reset.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ExemptIps []ObjectGlobalIpsSensorOverrideExemptIpArgs
    Exempt-Ip. The structure of exempt_ip block is documented below.
    Log string
    Log. Valid values: disable, enable.
    LogPacket string
    Log-Packet. Valid values: disable, enable.
    ObjectGlobalIpsSensorOverrideId string
    an identifier for the resource with format {{rule_id}}.
    Quarantine string
    Quarantine. Valid values: none, attacker, both, interface.
    QuarantineExpiry float64
    Quarantine-Expiry.
    QuarantineLog string
    Quarantine-Log. Valid values: disable, enable.
    RuleId float64
    Rule-Id.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Sensor string
    Sensor.
    Status string
    Status. Valid values: disable, enable.
    action String
    Action. Valid values: pass, block, reset.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exemptIps List<ObjectGlobalIpsSensorOverrideExemptIp>
    Exempt-Ip. The structure of exempt_ip block is documented below.
    log String
    Log. Valid values: disable, enable.
    logPacket String
    Log-Packet. Valid values: disable, enable.
    objectGlobalIpsSensorOverrideId String
    an identifier for the resource with format {{rule_id}}.
    quarantine String
    Quarantine. Valid values: none, attacker, both, interface.
    quarantineExpiry Double
    Quarantine-Expiry.
    quarantineLog String
    Quarantine-Log. Valid values: disable, enable.
    ruleId Double
    Rule-Id.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sensor String
    Sensor.
    status String
    Status. Valid values: disable, enable.
    action string
    Action. Valid values: pass, block, reset.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exemptIps ObjectGlobalIpsSensorOverrideExemptIp[]
    Exempt-Ip. The structure of exempt_ip block is documented below.
    log string
    Log. Valid values: disable, enable.
    logPacket string
    Log-Packet. Valid values: disable, enable.
    objectGlobalIpsSensorOverrideId string
    an identifier for the resource with format {{rule_id}}.
    quarantine string
    Quarantine. Valid values: none, attacker, both, interface.
    quarantineExpiry number
    Quarantine-Expiry.
    quarantineLog string
    Quarantine-Log. Valid values: disable, enable.
    ruleId number
    Rule-Id.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sensor string
    Sensor.
    status string
    Status. Valid values: disable, enable.
    action str
    Action. Valid values: pass, block, reset.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exempt_ips Sequence[ObjectGlobalIpsSensorOverrideExemptIpArgs]
    Exempt-Ip. The structure of exempt_ip block is documented below.
    log str
    Log. Valid values: disable, enable.
    log_packet str
    Log-Packet. Valid values: disable, enable.
    object_global_ips_sensor_override_id str
    an identifier for the resource with format {{rule_id}}.
    quarantine str
    Quarantine. Valid values: none, attacker, both, interface.
    quarantine_expiry float
    Quarantine-Expiry.
    quarantine_log str
    Quarantine-Log. Valid values: disable, enable.
    rule_id float
    Rule-Id.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sensor str
    Sensor.
    status str
    Status. Valid values: disable, enable.
    action String
    Action. Valid values: pass, block, reset.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exemptIps List<Property Map>
    Exempt-Ip. The structure of exempt_ip block is documented below.
    log String
    Log. Valid values: disable, enable.
    logPacket String
    Log-Packet. Valid values: disable, enable.
    objectGlobalIpsSensorOverrideId String
    an identifier for the resource with format {{rule_id}}.
    quarantine String
    Quarantine. Valid values: none, attacker, both, interface.
    quarantineExpiry Number
    Quarantine-Expiry.
    quarantineLog String
    Quarantine-Log. Valid values: disable, enable.
    ruleId Number
    Rule-Id.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sensor String
    Sensor.
    status String
    Status. Valid values: disable, enable.

    Supporting Types

    ObjectGlobalIpsSensorOverrideExemptIp, ObjectGlobalIpsSensorOverrideExemptIpArgs

    DstIp string
    Dst-Ip.
    Id double
    Id.
    SrcIp string
    Src-Ip.
    DstIp string
    Dst-Ip.
    Id float64
    Id.
    SrcIp string
    Src-Ip.
    dstIp String
    Dst-Ip.
    id Double
    Id.
    srcIp String
    Src-Ip.
    dstIp string
    Dst-Ip.
    id number
    Id.
    srcIp string
    Src-Ip.
    dst_ip str
    Dst-Ip.
    id float
    Id.
    src_ip str
    Src-Ip.
    dstIp String
    Dst-Ip.
    id Number
    Id.
    srcIp String
    Src-Ip.

    Import

    ObjectGlobal IpsSensorOverride can be imported using any of these accepted formats:

    Set import_options = [“sensor=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectGlobalIpsSensorOverride:ObjectGlobalIpsSensorOverride labelname {{rule_id}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev