fortimanager.ObjectIpsCustom
Explore with Pulumi AI
Configure IPS custom signature.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectIpsCustom("trname", {
ruleId: 1,
signature: "F-SBID(--name: [string]; --service: [string]; --flow: [string])",
tag: "terraform-ipscustom",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectIpsCustom("trname",
rule_id=1,
signature="F-SBID(--name: [string]; --service: [string]; --flow: [string])",
tag="terraform-ipscustom")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectIpsCustom(ctx, "trname", &fortimanager.ObjectIpsCustomArgs{
RuleId: pulumi.Float64(1),
Signature: pulumi.String("F-SBID(--name: [string]; --service: [string]; --flow: [string])"),
Tag: pulumi.String("terraform-ipscustom"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectIpsCustom("trname", new()
{
RuleId = 1,
Signature = "F-SBID(--name: [string]; --service: [string]; --flow: [string])",
Tag = "terraform-ipscustom",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectIpsCustom;
import com.pulumi.fortimanager.ObjectIpsCustomArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new ObjectIpsCustom("trname", ObjectIpsCustomArgs.builder()
.ruleId(1)
.signature("F-SBID(--name: [string]; --service: [string]; --flow: [string])")
.tag("terraform-ipscustom")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectIpsCustom
properties:
ruleId: 1
signature: 'F-SBID(--name: [string]; --service: [string]; --flow: [string])'
tag: terraform-ipscustom
Create ObjectIpsCustom Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectIpsCustom(name: string, args?: ObjectIpsCustomArgs, opts?: CustomResourceOptions);
@overload
def ObjectIpsCustom(resource_name: str,
args: Optional[ObjectIpsCustomArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectIpsCustom(resource_name: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
applications: Optional[Sequence[str]] = None,
comment: Optional[str] = None,
locations: Optional[Sequence[str]] = None,
log: Optional[str] = None,
log_packet: Optional[str] = None,
object_ips_custom_id: Optional[str] = None,
os: Optional[Sequence[str]] = None,
protocol: Optional[str] = None,
rule_id: Optional[float] = None,
scopetype: Optional[str] = None,
severity: Optional[str] = None,
sig_name: Optional[str] = None,
signature: Optional[str] = None,
status: Optional[str] = None,
tag: Optional[str] = None)
func NewObjectIpsCustom(ctx *Context, name string, args *ObjectIpsCustomArgs, opts ...ResourceOption) (*ObjectIpsCustom, error)
public ObjectIpsCustom(string name, ObjectIpsCustomArgs? args = null, CustomResourceOptions? opts = null)
public ObjectIpsCustom(String name, ObjectIpsCustomArgs args)
public ObjectIpsCustom(String name, ObjectIpsCustomArgs args, CustomResourceOptions options)
type: fortimanager:ObjectIpsCustom
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 ObjectIpsCustomArgs
- 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 ObjectIpsCustomArgs
- 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 ObjectIpsCustomArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectIpsCustomArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectIpsCustomArgs
- 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 objectIpsCustomResource = new Fortimanager.ObjectIpsCustom("objectIpsCustomResource", new()
{
Action = "string",
Adom = "string",
Applications = new[]
{
"string",
},
Comment = "string",
Locations = new[]
{
"string",
},
Log = "string",
LogPacket = "string",
ObjectIpsCustomId = "string",
Os = new[]
{
"string",
},
Protocol = "string",
RuleId = 0,
Scopetype = "string",
Severity = "string",
SigName = "string",
Signature = "string",
Status = "string",
Tag = "string",
});
example, err := fortimanager.NewObjectIpsCustom(ctx, "objectIpsCustomResource", &fortimanager.ObjectIpsCustomArgs{
Action: pulumi.String("string"),
Adom: pulumi.String("string"),
Applications: pulumi.StringArray{
pulumi.String("string"),
},
Comment: pulumi.String("string"),
Locations: pulumi.StringArray{
pulumi.String("string"),
},
Log: pulumi.String("string"),
LogPacket: pulumi.String("string"),
ObjectIpsCustomId: pulumi.String("string"),
Os: pulumi.StringArray{
pulumi.String("string"),
},
Protocol: pulumi.String("string"),
RuleId: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Severity: pulumi.String("string"),
SigName: pulumi.String("string"),
Signature: pulumi.String("string"),
Status: pulumi.String("string"),
Tag: pulumi.String("string"),
})
var objectIpsCustomResource = new ObjectIpsCustom("objectIpsCustomResource", ObjectIpsCustomArgs.builder()
.action("string")
.adom("string")
.applications("string")
.comment("string")
.locations("string")
.log("string")
.logPacket("string")
.objectIpsCustomId("string")
.os("string")
.protocol("string")
.ruleId(0)
.scopetype("string")
.severity("string")
.sigName("string")
.signature("string")
.status("string")
.tag("string")
.build());
object_ips_custom_resource = fortimanager.ObjectIpsCustom("objectIpsCustomResource",
action="string",
adom="string",
applications=["string"],
comment="string",
locations=["string"],
log="string",
log_packet="string",
object_ips_custom_id="string",
os=["string"],
protocol="string",
rule_id=0,
scopetype="string",
severity="string",
sig_name="string",
signature="string",
status="string",
tag="string")
const objectIpsCustomResource = new fortimanager.ObjectIpsCustom("objectIpsCustomResource", {
action: "string",
adom: "string",
applications: ["string"],
comment: "string",
locations: ["string"],
log: "string",
logPacket: "string",
objectIpsCustomId: "string",
os: ["string"],
protocol: "string",
ruleId: 0,
scopetype: "string",
severity: "string",
sigName: "string",
signature: "string",
status: "string",
tag: "string",
});
type: fortimanager:ObjectIpsCustom
properties:
action: string
adom: string
applications:
- string
comment: string
locations:
- string
log: string
logPacket: string
objectIpsCustomId: string
os:
- string
protocol: string
ruleId: 0
scopetype: string
severity: string
sigName: string
signature: string
status: string
tag: string
ObjectIpsCustom 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 ObjectIpsCustom resource accepts the following input properties:
- Action string
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Applications List<string>
- Applications to be protected. Blank for all applications.
- Comment string
- Comment.
- Locations List<string>
- Protect client or server traffic.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Log
Packet string - Enable/disable packet logging. Valid values:
disable
,enable
. - Object
Ips stringCustom Id - an identifier for the resource with format {{tag}}.
- Os List<string>
- Operating system(s) that the signature protects. Blank for all operating systems.
- Protocol string
- Protocol(s) that the signature scans. Blank for all protocols.
- Rule
Id double - Rule-Id.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Severity string
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- Sig
Name string - Sig-Name.
- Signature string
- Custom signature enclosed in single quotes.
- Status string
- Enable/disable this signature. Valid values:
disable
,enable
. - Tag string
- Signature tag.
- Action string
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Applications []string
- Applications to be protected. Blank for all applications.
- Comment string
- Comment.
- Locations []string
- Protect client or server traffic.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Log
Packet string - Enable/disable packet logging. Valid values:
disable
,enable
. - Object
Ips stringCustom Id - an identifier for the resource with format {{tag}}.
- Os []string
- Operating system(s) that the signature protects. Blank for all operating systems.
- Protocol string
- Protocol(s) that the signature scans. Blank for all protocols.
- Rule
Id float64 - Rule-Id.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Severity string
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- Sig
Name string - Sig-Name.
- Signature string
- Custom signature enclosed in single quotes.
- Status string
- Enable/disable this signature. Valid values:
disable
,enable
. - Tag string
- Signature tag.
- action String
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - applications List<String>
- Applications to be protected. Blank for all applications.
- comment String
- Comment.
- locations List<String>
- Protect client or server traffic.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - log
Packet String - Enable/disable packet logging. Valid values:
disable
,enable
. - object
Ips StringCustom Id - an identifier for the resource with format {{tag}}.
- os List<String>
- Operating system(s) that the signature protects. Blank for all operating systems.
- protocol String
- Protocol(s) that the signature scans. Blank for all protocols.
- rule
Id Double - Rule-Id.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - severity String
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- sig
Name String - Sig-Name.
- signature String
- Custom signature enclosed in single quotes.
- status String
- Enable/disable this signature. Valid values:
disable
,enable
. - tag String
- Signature tag.
- action string
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - applications string[]
- Applications to be protected. Blank for all applications.
- comment string
- Comment.
- locations string[]
- Protect client or server traffic.
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - log
Packet string - Enable/disable packet logging. Valid values:
disable
,enable
. - object
Ips stringCustom Id - an identifier for the resource with format {{tag}}.
- os string[]
- Operating system(s) that the signature protects. Blank for all operating systems.
- protocol string
- Protocol(s) that the signature scans. Blank for all protocols.
- rule
Id number - Rule-Id.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - severity string
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- sig
Name string - Sig-Name.
- signature string
- Custom signature enclosed in single quotes.
- status string
- Enable/disable this signature. Valid values:
disable
,enable
. - tag string
- Signature tag.
- action str
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - applications Sequence[str]
- Applications to be protected. Blank for all applications.
- comment str
- Comment.
- locations Sequence[str]
- Protect client or server traffic.
- log str
- Enable/disable logging. Valid values:
disable
,enable
. - log_
packet str - Enable/disable packet logging. Valid values:
disable
,enable
. - object_
ips_ strcustom_ id - an identifier for the resource with format {{tag}}.
- os Sequence[str]
- Operating system(s) that the signature protects. Blank for all operating systems.
- protocol str
- Protocol(s) that the signature scans. Blank for all protocols.
- rule_
id float - Rule-Id.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - severity str
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- sig_
name str - Sig-Name.
- signature str
- Custom signature enclosed in single quotes.
- status str
- Enable/disable this signature. Valid values:
disable
,enable
. - tag str
- Signature tag.
- action String
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - applications List<String>
- Applications to be protected. Blank for all applications.
- comment String
- Comment.
- locations List<String>
- Protect client or server traffic.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - log
Packet String - Enable/disable packet logging. Valid values:
disable
,enable
. - object
Ips StringCustom Id - an identifier for the resource with format {{tag}}.
- os List<String>
- Operating system(s) that the signature protects. Blank for all operating systems.
- protocol String
- Protocol(s) that the signature scans. Blank for all protocols.
- rule
Id Number - Rule-Id.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - severity String
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- sig
Name String - Sig-Name.
- signature String
- Custom signature enclosed in single quotes.
- status String
- Enable/disable this signature. Valid values:
disable
,enable
. - tag String
- Signature tag.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectIpsCustom 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 ObjectIpsCustom Resource
Get an existing ObjectIpsCustom 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?: ObjectIpsCustomState, opts?: CustomResourceOptions): ObjectIpsCustom
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
applications: Optional[Sequence[str]] = None,
comment: Optional[str] = None,
locations: Optional[Sequence[str]] = None,
log: Optional[str] = None,
log_packet: Optional[str] = None,
object_ips_custom_id: Optional[str] = None,
os: Optional[Sequence[str]] = None,
protocol: Optional[str] = None,
rule_id: Optional[float] = None,
scopetype: Optional[str] = None,
severity: Optional[str] = None,
sig_name: Optional[str] = None,
signature: Optional[str] = None,
status: Optional[str] = None,
tag: Optional[str] = None) -> ObjectIpsCustom
func GetObjectIpsCustom(ctx *Context, name string, id IDInput, state *ObjectIpsCustomState, opts ...ResourceOption) (*ObjectIpsCustom, error)
public static ObjectIpsCustom Get(string name, Input<string> id, ObjectIpsCustomState? state, CustomResourceOptions? opts = null)
public static ObjectIpsCustom get(String name, Output<String> id, ObjectIpsCustomState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectIpsCustom 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.
- Action string
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Applications List<string>
- Applications to be protected. Blank for all applications.
- Comment string
- Comment.
- Locations List<string>
- Protect client or server traffic.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Log
Packet string - Enable/disable packet logging. Valid values:
disable
,enable
. - Object
Ips stringCustom Id - an identifier for the resource with format {{tag}}.
- Os List<string>
- Operating system(s) that the signature protects. Blank for all operating systems.
- Protocol string
- Protocol(s) that the signature scans. Blank for all protocols.
- Rule
Id double - Rule-Id.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Severity string
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- Sig
Name string - Sig-Name.
- Signature string
- Custom signature enclosed in single quotes.
- Status string
- Enable/disable this signature. Valid values:
disable
,enable
. - Tag string
- Signature tag.
- Action string
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Applications []string
- Applications to be protected. Blank for all applications.
- Comment string
- Comment.
- Locations []string
- Protect client or server traffic.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Log
Packet string - Enable/disable packet logging. Valid values:
disable
,enable
. - Object
Ips stringCustom Id - an identifier for the resource with format {{tag}}.
- Os []string
- Operating system(s) that the signature protects. Blank for all operating systems.
- Protocol string
- Protocol(s) that the signature scans. Blank for all protocols.
- Rule
Id float64 - Rule-Id.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Severity string
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- Sig
Name string - Sig-Name.
- Signature string
- Custom signature enclosed in single quotes.
- Status string
- Enable/disable this signature. Valid values:
disable
,enable
. - Tag string
- Signature tag.
- action String
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - applications List<String>
- Applications to be protected. Blank for all applications.
- comment String
- Comment.
- locations List<String>
- Protect client or server traffic.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - log
Packet String - Enable/disable packet logging. Valid values:
disable
,enable
. - object
Ips StringCustom Id - an identifier for the resource with format {{tag}}.
- os List<String>
- Operating system(s) that the signature protects. Blank for all operating systems.
- protocol String
- Protocol(s) that the signature scans. Blank for all protocols.
- rule
Id Double - Rule-Id.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - severity String
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- sig
Name String - Sig-Name.
- signature String
- Custom signature enclosed in single quotes.
- status String
- Enable/disable this signature. Valid values:
disable
,enable
. - tag String
- Signature tag.
- action string
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - applications string[]
- Applications to be protected. Blank for all applications.
- comment string
- Comment.
- locations string[]
- Protect client or server traffic.
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - log
Packet string - Enable/disable packet logging. Valid values:
disable
,enable
. - object
Ips stringCustom Id - an identifier for the resource with format {{tag}}.
- os string[]
- Operating system(s) that the signature protects. Blank for all operating systems.
- protocol string
- Protocol(s) that the signature scans. Blank for all protocols.
- rule
Id number - Rule-Id.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - severity string
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- sig
Name string - Sig-Name.
- signature string
- Custom signature enclosed in single quotes.
- status string
- Enable/disable this signature. Valid values:
disable
,enable
. - tag string
- Signature tag.
- action str
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - applications Sequence[str]
- Applications to be protected. Blank for all applications.
- comment str
- Comment.
- locations Sequence[str]
- Protect client or server traffic.
- log str
- Enable/disable logging. Valid values:
disable
,enable
. - log_
packet str - Enable/disable packet logging. Valid values:
disable
,enable
. - object_
ips_ strcustom_ id - an identifier for the resource with format {{tag}}.
- os Sequence[str]
- Operating system(s) that the signature protects. Blank for all operating systems.
- protocol str
- Protocol(s) that the signature scans. Blank for all protocols.
- rule_
id float - Rule-Id.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - severity str
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- sig_
name str - Sig-Name.
- signature str
- Custom signature enclosed in single quotes.
- status str
- Enable/disable this signature. Valid values:
disable
,enable
. - tag str
- Signature tag.
- action String
- Default action (pass or block) for this signature. Valid values:
block
,pass
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - applications List<String>
- Applications to be protected. Blank for all applications.
- comment String
- Comment.
- locations List<String>
- Protect client or server traffic.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - log
Packet String - Enable/disable packet logging. Valid values:
disable
,enable
. - object
Ips StringCustom Id - an identifier for the resource with format {{tag}}.
- os List<String>
- Operating system(s) that the signature protects. Blank for all operating systems.
- protocol String
- Protocol(s) that the signature scans. Blank for all protocols.
- rule
Id Number - Rule-Id.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - severity String
- Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
- sig
Name String - Sig-Name.
- signature String
- Custom signature enclosed in single quotes.
- status String
- Enable/disable this signature. Valid values:
disable
,enable
. - tag String
- Signature tag.
Import
ObjectIps Custom can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectIpsCustom:ObjectIpsCustom labelname {{tag}}
$ 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.