fortimanager.ObjectWafProfileUrlaccess
Explore with Pulumi AI
URL access list
This resource is a sub resource for variable
url_access
of resourcefortimanager.ObjectWafProfile
. 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.
access_pattern
:fortimanager.ObjectWafProfileUrlaccessAccesspattern
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectWafProfile = new fortimanager.ObjectWafProfile("trnameObjectWafProfile", {});
const trnameObjectWafProfileUrlaccess = new fortimanager.ObjectWafProfileUrlaccess("trnameObjectWafProfileUrlaccess", {
fosid: 12,
log: "enable",
severity: "high",
profile: trnameObjectWafProfile.name,
}, {
dependsOn: [trnameObjectWafProfile],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_waf_profile = fortimanager.ObjectWafProfile("trnameObjectWafProfile")
trname_object_waf_profile_urlaccess = fortimanager.ObjectWafProfileUrlaccess("trnameObjectWafProfileUrlaccess",
fosid=12,
log="enable",
severity="high",
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.NewObjectWafProfileUrlaccess(ctx, "trnameObjectWafProfileUrlaccess", &fortimanager.ObjectWafProfileUrlaccessArgs{
Fosid: pulumi.Float64(12),
Log: pulumi.String("enable"),
Severity: pulumi.String("high"),
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 trnameObjectWafProfileUrlaccess = new Fortimanager.ObjectWafProfileUrlaccess("trnameObjectWafProfileUrlaccess", new()
{
Fosid = 12,
Log = "enable",
Severity = "high",
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.ObjectWafProfileUrlaccess;
import com.pulumi.fortimanager.ObjectWafProfileUrlaccessArgs;
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 trnameObjectWafProfileUrlaccess = new ObjectWafProfileUrlaccess("trnameObjectWafProfileUrlaccess", ObjectWafProfileUrlaccessArgs.builder()
.fosid(12)
.log("enable")
.severity("high")
.profile(trnameObjectWafProfile.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectWafProfile)
.build());
}
}
resources:
trnameObjectWafProfileUrlaccess:
type: fortimanager:ObjectWafProfileUrlaccess
properties:
fosid: 12
log: enable
severity: high
profile: ${trnameObjectWafProfile.name}
options:
dependsOn:
- ${trnameObjectWafProfile}
trnameObjectWafProfile:
type: fortimanager:ObjectWafProfile
Create ObjectWafProfileUrlaccess Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWafProfileUrlaccess(name: string, args: ObjectWafProfileUrlaccessArgs, opts?: CustomResourceOptions);
@overload
def ObjectWafProfileUrlaccess(resource_name: str,
args: ObjectWafProfileUrlaccessArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWafProfileUrlaccess(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile: Optional[str] = None,
access_patterns: Optional[Sequence[ObjectWafProfileUrlaccessAccessPatternArgs]] = None,
action: Optional[str] = None,
address: Optional[str] = None,
adom: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
fosid: Optional[float] = None,
log: Optional[str] = None,
object_waf_profile_urlaccess_id: Optional[str] = None,
scopetype: Optional[str] = None,
severity: Optional[str] = None)
func NewObjectWafProfileUrlaccess(ctx *Context, name string, args ObjectWafProfileUrlaccessArgs, opts ...ResourceOption) (*ObjectWafProfileUrlaccess, error)
public ObjectWafProfileUrlaccess(string name, ObjectWafProfileUrlaccessArgs args, CustomResourceOptions? opts = null)
public ObjectWafProfileUrlaccess(String name, ObjectWafProfileUrlaccessArgs args)
public ObjectWafProfileUrlaccess(String name, ObjectWafProfileUrlaccessArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWafProfileUrlaccess
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 ObjectWafProfileUrlaccessArgs
- 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 ObjectWafProfileUrlaccessArgs
- 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 ObjectWafProfileUrlaccessArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWafProfileUrlaccessArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWafProfileUrlaccessArgs
- 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 objectWafProfileUrlaccessResource = new Fortimanager.ObjectWafProfileUrlaccess("objectWafProfileUrlaccessResource", new()
{
Profile = "string",
AccessPatterns = new[]
{
new Fortimanager.Inputs.ObjectWafProfileUrlaccessAccessPatternArgs
{
Id = 0,
Negate = "string",
Pattern = "string",
Regex = "string",
Srcaddr = "string",
},
},
Action = "string",
Address = "string",
Adom = "string",
DynamicSortSubtable = "string",
Fosid = 0,
Log = "string",
ObjectWafProfileUrlaccessId = "string",
Scopetype = "string",
Severity = "string",
});
example, err := fortimanager.NewObjectWafProfileUrlaccess(ctx, "objectWafProfileUrlaccessResource", &fortimanager.ObjectWafProfileUrlaccessArgs{
Profile: pulumi.String("string"),
AccessPatterns: .ObjectWafProfileUrlaccessAccessPatternTypeArray{
&.ObjectWafProfileUrlaccessAccessPatternTypeArgs{
Id: pulumi.Float64(0),
Negate: pulumi.String("string"),
Pattern: pulumi.String("string"),
Regex: pulumi.String("string"),
Srcaddr: pulumi.String("string"),
},
},
Action: pulumi.String("string"),
Address: pulumi.String("string"),
Adom: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Log: pulumi.String("string"),
ObjectWafProfileUrlaccessId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Severity: pulumi.String("string"),
})
var objectWafProfileUrlaccessResource = new ObjectWafProfileUrlaccess("objectWafProfileUrlaccessResource", ObjectWafProfileUrlaccessArgs.builder()
.profile("string")
.accessPatterns(ObjectWafProfileUrlaccessAccessPatternArgs.builder()
.id(0)
.negate("string")
.pattern("string")
.regex("string")
.srcaddr("string")
.build())
.action("string")
.address("string")
.adom("string")
.dynamicSortSubtable("string")
.fosid(0)
.log("string")
.objectWafProfileUrlaccessId("string")
.scopetype("string")
.severity("string")
.build());
object_waf_profile_urlaccess_resource = fortimanager.ObjectWafProfileUrlaccess("objectWafProfileUrlaccessResource",
profile="string",
access_patterns=[{
"id": 0,
"negate": "string",
"pattern": "string",
"regex": "string",
"srcaddr": "string",
}],
action="string",
address="string",
adom="string",
dynamic_sort_subtable="string",
fosid=0,
log="string",
object_waf_profile_urlaccess_id="string",
scopetype="string",
severity="string")
const objectWafProfileUrlaccessResource = new fortimanager.ObjectWafProfileUrlaccess("objectWafProfileUrlaccessResource", {
profile: "string",
accessPatterns: [{
id: 0,
negate: "string",
pattern: "string",
regex: "string",
srcaddr: "string",
}],
action: "string",
address: "string",
adom: "string",
dynamicSortSubtable: "string",
fosid: 0,
log: "string",
objectWafProfileUrlaccessId: "string",
scopetype: "string",
severity: "string",
});
type: fortimanager:ObjectWafProfileUrlaccess
properties:
accessPatterns:
- id: 0
negate: string
pattern: string
regex: string
srcaddr: string
action: string
address: string
adom: string
dynamicSortSubtable: string
fosid: 0
log: string
objectWafProfileUrlaccessId: string
profile: string
scopetype: string
severity: string
ObjectWafProfileUrlaccess 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 ObjectWafProfileUrlaccess resource accepts the following input properties:
- Profile string
- Profile.
- Access
Patterns List<ObjectWaf Profile Urlaccess Access Pattern> - Access-Pattern. The structure of
access_pattern
block is documented below. - Action string
- Action. Valid values:
bypass
,permit
,block
. - Address string
- Host address.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - 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.
- Fosid double
- URL access ID.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Object
Waf stringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
- Profile string
- Profile.
- Access
Patterns []ObjectWaf Profile Urlaccess Access Pattern Type Args - Access-Pattern. The structure of
access_pattern
block is documented below. - Action string
- Action. Valid values:
bypass
,permit
,block
. - Address string
- Host address.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - 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.
- Fosid float64
- URL access ID.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Object
Waf stringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
- profile String
- Profile.
- access
Patterns List<ObjectWaf Profile Urlaccess Access Pattern> - Access-Pattern. The structure of
access_pattern
block is documented below. - action String
- Action. Valid values:
bypass
,permit
,block
. - address String
- Host address.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - 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.
- fosid Double
- URL access ID.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - object
Waf StringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
- profile string
- Profile.
- access
Patterns ObjectWaf Profile Urlaccess Access Pattern[] - Access-Pattern. The structure of
access_pattern
block is documented below. - action string
- Action. Valid values:
bypass
,permit
,block
. - address string
- Host address.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort stringSubtable - 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.
- fosid number
- URL access ID.
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - object
Waf stringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
- profile str
- Profile.
- access_
patterns Sequence[ObjectWaf Profile Urlaccess Access Pattern Args] - Access-Pattern. The structure of
access_pattern
block is documented below. - action str
- Action. Valid values:
bypass
,permit
,block
. - address str
- Host address.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic_
sort_ strsubtable - 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.
- fosid float
- URL access ID.
- log str
- Enable/disable logging. Valid values:
disable
,enable
. - object_
waf_ strprofile_ urlaccess_ id - an identifier for the resource with format {{fosid}}.
- 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
.
- profile String
- Profile.
- access
Patterns List<Property Map> - Access-Pattern. The structure of
access_pattern
block is documented below. - action String
- Action. Valid values:
bypass
,permit
,block
. - address String
- Host address.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - 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.
- fosid Number
- URL access ID.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - object
Waf StringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWafProfileUrlaccess 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 ObjectWafProfileUrlaccess Resource
Get an existing ObjectWafProfileUrlaccess 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?: ObjectWafProfileUrlaccessState, opts?: CustomResourceOptions): ObjectWafProfileUrlaccess
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_patterns: Optional[Sequence[ObjectWafProfileUrlaccessAccessPatternArgs]] = None,
action: Optional[str] = None,
address: Optional[str] = None,
adom: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
fosid: Optional[float] = None,
log: Optional[str] = None,
object_waf_profile_urlaccess_id: Optional[str] = None,
profile: Optional[str] = None,
scopetype: Optional[str] = None,
severity: Optional[str] = None) -> ObjectWafProfileUrlaccess
func GetObjectWafProfileUrlaccess(ctx *Context, name string, id IDInput, state *ObjectWafProfileUrlaccessState, opts ...ResourceOption) (*ObjectWafProfileUrlaccess, error)
public static ObjectWafProfileUrlaccess Get(string name, Input<string> id, ObjectWafProfileUrlaccessState? state, CustomResourceOptions? opts = null)
public static ObjectWafProfileUrlaccess get(String name, Output<String> id, ObjectWafProfileUrlaccessState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWafProfileUrlaccess 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.
- Access
Patterns List<ObjectWaf Profile Urlaccess Access Pattern> - Access-Pattern. The structure of
access_pattern
block is documented below. - Action string
- Action. Valid values:
bypass
,permit
,block
. - Address string
- Host address.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - 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.
- Fosid double
- URL access ID.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Object
Waf stringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
- Access
Patterns []ObjectWaf Profile Urlaccess Access Pattern Type Args - Access-Pattern. The structure of
access_pattern
block is documented below. - Action string
- Action. Valid values:
bypass
,permit
,block
. - Address string
- Host address.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - 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.
- Fosid float64
- URL access ID.
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Object
Waf stringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
- access
Patterns List<ObjectWaf Profile Urlaccess Access Pattern> - Access-Pattern. The structure of
access_pattern
block is documented below. - action String
- Action. Valid values:
bypass
,permit
,block
. - address String
- Host address.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - 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.
- fosid Double
- URL access ID.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - object
Waf StringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
- access
Patterns ObjectWaf Profile Urlaccess Access Pattern[] - Access-Pattern. The structure of
access_pattern
block is documented below. - action string
- Action. Valid values:
bypass
,permit
,block
. - address string
- Host address.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort stringSubtable - 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.
- fosid number
- URL access ID.
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - object
Waf stringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
- access_
patterns Sequence[ObjectWaf Profile Urlaccess Access Pattern Args] - Access-Pattern. The structure of
access_pattern
block is documented below. - action str
- Action. Valid values:
bypass
,permit
,block
. - address str
- Host address.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic_
sort_ strsubtable - 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.
- fosid float
- URL access ID.
- log str
- Enable/disable logging. Valid values:
disable
,enable
. - object_
waf_ strprofile_ urlaccess_ id - an identifier for the resource with format {{fosid}}.
- 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
.
- access
Patterns List<Property Map> - Access-Pattern. The structure of
access_pattern
block is documented below. - action String
- Action. Valid values:
bypass
,permit
,block
. - address String
- Host address.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - 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.
- fosid Number
- URL access ID.
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - object
Waf StringProfile Urlaccess Id - an identifier for the resource with format {{fosid}}.
- 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
.
Supporting Types
ObjectWafProfileUrlaccessAccessPattern, ObjectWafProfileUrlaccessAccessPatternArgs
Import
ObjectWaf ProfileUrlAccess 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/objectWafProfileUrlaccess:ObjectWafProfileUrlaccess labelname {{fosid}}
$ 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.