fortimanager.ObjectWafProfileSignatureCustomsignature
Explore with Pulumi AI
Custom signature.
This resource is a sub resource for variable
custom_signature
of resourcefortimanager.ObjectWafProfileSignature
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectWafProfile = new fortimanager.ObjectWafProfile("trnameObjectWafProfile", {});
const trnameObjectWafProfileSignatureCustomsignature = new fortimanager.ObjectWafProfileSignatureCustomsignature("trnameObjectWafProfileSignatureCustomsignature", {
direction: "response",
log: "enable",
profile: trnameObjectWafProfile.name,
}, {
dependsOn: [trnameObjectWafProfile],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_waf_profile = fortimanager.ObjectWafProfile("trnameObjectWafProfile")
trname_object_waf_profile_signature_customsignature = fortimanager.ObjectWafProfileSignatureCustomsignature("trnameObjectWafProfileSignatureCustomsignature",
direction="response",
log="enable",
profile=trname_object_waf_profile.name,
opts = pulumi.ResourceOptions(depends_on=[trname_object_waf_profile]))
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 {
trnameObjectWafProfile, err := fortimanager.NewObjectWafProfile(ctx, "trnameObjectWafProfile", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectWafProfileSignatureCustomsignature(ctx, "trnameObjectWafProfileSignatureCustomsignature", &fortimanager.ObjectWafProfileSignatureCustomsignatureArgs{
Direction: pulumi.String("response"),
Log: pulumi.String("enable"),
Profile: trnameObjectWafProfile.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectWafProfile,
}))
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 trnameObjectWafProfile = new Fortimanager.ObjectWafProfile("trnameObjectWafProfile");
var trnameObjectWafProfileSignatureCustomsignature = new Fortimanager.ObjectWafProfileSignatureCustomsignature("trnameObjectWafProfileSignatureCustomsignature", new()
{
Direction = "response",
Log = "enable",
Profile = trnameObjectWafProfile.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectWafProfile,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWafProfile;
import com.pulumi.fortimanager.ObjectWafProfileSignatureCustomsignature;
import com.pulumi.fortimanager.ObjectWafProfileSignatureCustomsignatureArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trnameObjectWafProfile = new ObjectWafProfile("trnameObjectWafProfile");
var trnameObjectWafProfileSignatureCustomsignature = new ObjectWafProfileSignatureCustomsignature("trnameObjectWafProfileSignatureCustomsignature", ObjectWafProfileSignatureCustomsignatureArgs.builder()
.direction("response")
.log("enable")
.profile(trnameObjectWafProfile.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectWafProfile)
.build());
}
}
resources:
trnameObjectWafProfileSignatureCustomsignature:
type: fortimanager:ObjectWafProfileSignatureCustomsignature
properties:
direction: response
log: enable
profile: ${trnameObjectWafProfile.name}
options:
dependsOn:
- ${trnameObjectWafProfile}
trnameObjectWafProfile:
type: fortimanager:ObjectWafProfile
Create ObjectWafProfileSignatureCustomsignature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWafProfileSignatureCustomsignature(name: string, args: ObjectWafProfileSignatureCustomsignatureArgs, opts?: CustomResourceOptions);
@overload
def ObjectWafProfileSignatureCustomsignature(resource_name: str,
args: ObjectWafProfileSignatureCustomsignatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWafProfileSignatureCustomsignature(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile: Optional[str] = None,
object_waf_profile_signature_customsignature_id: Optional[str] = None,
case_sensitivity: Optional[str] = None,
direction: Optional[str] = None,
log: Optional[str] = None,
name: Optional[str] = None,
action: Optional[str] = None,
pattern: Optional[str] = None,
adom: Optional[str] = None,
scopetype: Optional[str] = None,
severity: Optional[str] = None,
status: Optional[str] = None,
targets: Optional[Sequence[str]] = None)
func NewObjectWafProfileSignatureCustomsignature(ctx *Context, name string, args ObjectWafProfileSignatureCustomsignatureArgs, opts ...ResourceOption) (*ObjectWafProfileSignatureCustomsignature, error)
public ObjectWafProfileSignatureCustomsignature(string name, ObjectWafProfileSignatureCustomsignatureArgs args, CustomResourceOptions? opts = null)
public ObjectWafProfileSignatureCustomsignature(String name, ObjectWafProfileSignatureCustomsignatureArgs args)
public ObjectWafProfileSignatureCustomsignature(String name, ObjectWafProfileSignatureCustomsignatureArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWafProfileSignatureCustomsignature
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 ObjectWafProfileSignatureCustomsignatureArgs
- 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 ObjectWafProfileSignatureCustomsignatureArgs
- 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 ObjectWafProfileSignatureCustomsignatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWafProfileSignatureCustomsignatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWafProfileSignatureCustomsignatureArgs
- 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 objectWafProfileSignatureCustomsignatureResource = new Fortimanager.ObjectWafProfileSignatureCustomsignature("objectWafProfileSignatureCustomsignatureResource", new()
{
Profile = "string",
ObjectWafProfileSignatureCustomsignatureId = "string",
CaseSensitivity = "string",
Direction = "string",
Log = "string",
Name = "string",
Action = "string",
Pattern = "string",
Adom = "string",
Scopetype = "string",
Severity = "string",
Status = "string",
Targets = new[]
{
"string",
},
});
example, err := fortimanager.NewObjectWafProfileSignatureCustomsignature(ctx, "objectWafProfileSignatureCustomsignatureResource", &fortimanager.ObjectWafProfileSignatureCustomsignatureArgs{
Profile: pulumi.String("string"),
ObjectWafProfileSignatureCustomsignatureId: pulumi.String("string"),
CaseSensitivity: pulumi.String("string"),
Direction: pulumi.String("string"),
Log: pulumi.String("string"),
Name: pulumi.String("string"),
Action: pulumi.String("string"),
Pattern: pulumi.String("string"),
Adom: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
Targets: pulumi.StringArray{
pulumi.String("string"),
},
})
var objectWafProfileSignatureCustomsignatureResource = new ObjectWafProfileSignatureCustomsignature("objectWafProfileSignatureCustomsignatureResource", ObjectWafProfileSignatureCustomsignatureArgs.builder()
.profile("string")
.objectWafProfileSignatureCustomsignatureId("string")
.caseSensitivity("string")
.direction("string")
.log("string")
.name("string")
.action("string")
.pattern("string")
.adom("string")
.scopetype("string")
.severity("string")
.status("string")
.targets("string")
.build());
object_waf_profile_signature_customsignature_resource = fortimanager.ObjectWafProfileSignatureCustomsignature("objectWafProfileSignatureCustomsignatureResource",
profile="string",
object_waf_profile_signature_customsignature_id="string",
case_sensitivity="string",
direction="string",
log="string",
name="string",
action="string",
pattern="string",
adom="string",
scopetype="string",
severity="string",
status="string",
targets=["string"])
const objectWafProfileSignatureCustomsignatureResource = new fortimanager.ObjectWafProfileSignatureCustomsignature("objectWafProfileSignatureCustomsignatureResource", {
profile: "string",
objectWafProfileSignatureCustomsignatureId: "string",
caseSensitivity: "string",
direction: "string",
log: "string",
name: "string",
action: "string",
pattern: "string",
adom: "string",
scopetype: "string",
severity: "string",
status: "string",
targets: ["string"],
});
type: fortimanager:ObjectWafProfileSignatureCustomsignature
properties:
action: string
adom: string
caseSensitivity: string
direction: string
log: string
name: string
objectWafProfileSignatureCustomsignatureId: string
pattern: string
profile: string
scopetype: string
severity: string
status: string
targets:
- string
ObjectWafProfileSignatureCustomsignature 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 ObjectWafProfileSignatureCustomsignature resource accepts the following input properties:
- Profile string
- Profile.
- Action string
- Action. Valid values:
allow
,block
,erase
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Case
Sensitivity string - Case sensitivity in pattern. Valid values:
disable
,enable
. - Direction string
- Traffic direction. Valid values:
request
,response
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Name string
- Signature name.
- Object
Waf stringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- Pattern string
- Match pattern.
- 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
- Severity. Valid values:
low
,medium
,high
. - Status string
- Status. Valid values:
disable
,enable
. - Targets List<string>
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- Profile string
- Profile.
- Action string
- Action. Valid values:
allow
,block
,erase
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Case
Sensitivity string - Case sensitivity in pattern. Valid values:
disable
,enable
. - Direction string
- Traffic direction. Valid values:
request
,response
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Name string
- Signature name.
- Object
Waf stringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- Pattern string
- Match pattern.
- 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
- Severity. Valid values:
low
,medium
,high
. - Status string
- Status. Valid values:
disable
,enable
. - Targets []string
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- profile String
- Profile.
- action String
- Action. Valid values:
allow
,block
,erase
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - case
Sensitivity String - Case sensitivity in pattern. Valid values:
disable
,enable
. - direction String
- Traffic direction. Valid values:
request
,response
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - name String
- Signature name.
- object
Waf StringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- pattern String
- Match pattern.
- 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
- Severity. Valid values:
low
,medium
,high
. - status String
- Status. Valid values:
disable
,enable
. - targets List<String>
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- profile string
- Profile.
- action string
- Action. Valid values:
allow
,block
,erase
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - case
Sensitivity string - Case sensitivity in pattern. Valid values:
disable
,enable
. - direction string
- Traffic direction. Valid values:
request
,response
. - log string
- Enable/disable logging. Valid values:
disable
,enable
. - name string
- Signature name.
- object
Waf stringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- pattern string
- Match pattern.
- 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
- Severity. Valid values:
low
,medium
,high
. - status string
- Status. Valid values:
disable
,enable
. - targets string[]
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- profile str
- Profile.
- action str
- Action. Valid values:
allow
,block
,erase
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - case_
sensitivity str - Case sensitivity in pattern. Valid values:
disable
,enable
. - direction str
- Traffic direction. Valid values:
request
,response
. - log str
- Enable/disable logging. Valid values:
disable
,enable
. - name str
- Signature name.
- object_
waf_ strprofile_ signature_ customsignature_ id - an identifier for the resource with format {{name}}.
- pattern str
- Match pattern.
- 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
- Severity. Valid values:
low
,medium
,high
. - status str
- Status. Valid values:
disable
,enable
. - targets Sequence[str]
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- profile String
- Profile.
- action String
- Action. Valid values:
allow
,block
,erase
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - case
Sensitivity String - Case sensitivity in pattern. Valid values:
disable
,enable
. - direction String
- Traffic direction. Valid values:
request
,response
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - name String
- Signature name.
- object
Waf StringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- pattern String
- Match pattern.
- 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
- Severity. Valid values:
low
,medium
,high
. - status String
- Status. Valid values:
disable
,enable
. - targets List<String>
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWafProfileSignatureCustomsignature 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 ObjectWafProfileSignatureCustomsignature Resource
Get an existing ObjectWafProfileSignatureCustomsignature 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?: ObjectWafProfileSignatureCustomsignatureState, opts?: CustomResourceOptions): ObjectWafProfileSignatureCustomsignature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
case_sensitivity: Optional[str] = None,
direction: Optional[str] = None,
log: Optional[str] = None,
name: Optional[str] = None,
object_waf_profile_signature_customsignature_id: Optional[str] = None,
pattern: Optional[str] = None,
profile: Optional[str] = None,
scopetype: Optional[str] = None,
severity: Optional[str] = None,
status: Optional[str] = None,
targets: Optional[Sequence[str]] = None) -> ObjectWafProfileSignatureCustomsignature
func GetObjectWafProfileSignatureCustomsignature(ctx *Context, name string, id IDInput, state *ObjectWafProfileSignatureCustomsignatureState, opts ...ResourceOption) (*ObjectWafProfileSignatureCustomsignature, error)
public static ObjectWafProfileSignatureCustomsignature Get(string name, Input<string> id, ObjectWafProfileSignatureCustomsignatureState? state, CustomResourceOptions? opts = null)
public static ObjectWafProfileSignatureCustomsignature get(String name, Output<String> id, ObjectWafProfileSignatureCustomsignatureState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWafProfileSignatureCustomsignature 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
- Action. Valid values:
allow
,block
,erase
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Case
Sensitivity string - Case sensitivity in pattern. Valid values:
disable
,enable
. - Direction string
- Traffic direction. Valid values:
request
,response
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Name string
- Signature name.
- Object
Waf stringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- Pattern string
- Match pattern.
- Profile string
- Profile.
- 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
- Severity. Valid values:
low
,medium
,high
. - Status string
- Status. Valid values:
disable
,enable
. - Targets List<string>
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- Action string
- Action. Valid values:
allow
,block
,erase
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Case
Sensitivity string - Case sensitivity in pattern. Valid values:
disable
,enable
. - Direction string
- Traffic direction. Valid values:
request
,response
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Name string
- Signature name.
- Object
Waf stringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- Pattern string
- Match pattern.
- Profile string
- Profile.
- 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
- Severity. Valid values:
low
,medium
,high
. - Status string
- Status. Valid values:
disable
,enable
. - Targets []string
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- action String
- Action. Valid values:
allow
,block
,erase
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - case
Sensitivity String - Case sensitivity in pattern. Valid values:
disable
,enable
. - direction String
- Traffic direction. Valid values:
request
,response
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - name String
- Signature name.
- object
Waf StringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- pattern String
- Match pattern.
- profile String
- Profile.
- 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
- Severity. Valid values:
low
,medium
,high
. - status String
- Status. Valid values:
disable
,enable
. - targets List<String>
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- action string
- Action. Valid values:
allow
,block
,erase
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - case
Sensitivity string - Case sensitivity in pattern. Valid values:
disable
,enable
. - direction string
- Traffic direction. Valid values:
request
,response
. - log string
- Enable/disable logging. Valid values:
disable
,enable
. - name string
- Signature name.
- object
Waf stringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- pattern string
- Match pattern.
- profile string
- Profile.
- 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
- Severity. Valid values:
low
,medium
,high
. - status string
- Status. Valid values:
disable
,enable
. - targets string[]
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- action str
- Action. Valid values:
allow
,block
,erase
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - case_
sensitivity str - Case sensitivity in pattern. Valid values:
disable
,enable
. - direction str
- Traffic direction. Valid values:
request
,response
. - log str
- Enable/disable logging. Valid values:
disable
,enable
. - name str
- Signature name.
- object_
waf_ strprofile_ signature_ customsignature_ id - an identifier for the resource with format {{name}}.
- pattern str
- Match pattern.
- profile str
- Profile.
- 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
- Severity. Valid values:
low
,medium
,high
. - status str
- Status. Valid values:
disable
,enable
. - targets Sequence[str]
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
- action String
- Action. Valid values:
allow
,block
,erase
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - case
Sensitivity String - Case sensitivity in pattern. Valid values:
disable
,enable
. - direction String
- Traffic direction. Valid values:
request
,response
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - name String
- Signature name.
- object
Waf StringProfile Signature Customsignature Id - an identifier for the resource with format {{name}}.
- pattern String
- Match pattern.
- profile String
- Profile.
- 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
- Severity. Valid values:
low
,medium
,high
. - status String
- Status. Valid values:
disable
,enable
. - targets List<String>
- Match HTTP target. Valid values:
arg
,arg-name
,req-body
,req-cookie
,req-cookie-name
,req-filename
,req-header
,req-header-name
,req-raw-uri
,req-uri
,resp-body
,resp-hdr
,resp-status
.
Import
ObjectWaf ProfileSignatureCustomSignature can be imported using any of these accepted formats:
Set import_options = [“profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWafProfileSignatureCustomsignature:ObjectWafProfileSignatureCustomsignature labelname {{name}}
$ 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.