fortimanager.ObjectWafProfileUrlaccessAccesspattern
Explore with Pulumi AI
URL access pattern.
This resource is a sub resource for variable
access_pattern
of resourcefortimanager.ObjectWafProfileUrlaccess
. 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 trname2 = new fortimanager.ObjectWafProfileUrlaccess("trname2", {
fosid: 13,
profile: trnameObjectWafProfile.name,
}, {
dependsOn: [trnameObjectWafProfile],
});
const trnameObjectWafProfileUrlaccessAccesspattern = new fortimanager.ObjectWafProfileUrlaccessAccesspattern("trnameObjectWafProfileUrlaccessAccesspattern", {
profile: trnameObjectWafProfile.name,
urlAccess: trname2.fosid,
fosid: 1,
negate: "enable",
}, {
dependsOn: [trname2],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_waf_profile = fortimanager.ObjectWafProfile("trnameObjectWafProfile")
trname2 = fortimanager.ObjectWafProfileUrlaccess("trname2",
fosid=13,
profile=trname_object_waf_profile.name,
opts = pulumi.ResourceOptions(depends_on=[trname_object_waf_profile]))
trname_object_waf_profile_urlaccess_accesspattern = fortimanager.ObjectWafProfileUrlaccessAccesspattern("trnameObjectWafProfileUrlaccessAccesspattern",
profile=trname_object_waf_profile.name,
url_access=trname2.fosid,
fosid=1,
negate="enable",
opts = pulumi.ResourceOptions(depends_on=[trname2]))
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
}
trname2, err := fortimanager.NewObjectWafProfileUrlaccess(ctx, "trname2", &fortimanager.ObjectWafProfileUrlaccessArgs{
Fosid: pulumi.Float64(13),
Profile: trnameObjectWafProfile.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectWafProfile,
}))
if err != nil {
return err
}
_, err = fortimanager.NewObjectWafProfileUrlaccessAccesspattern(ctx, "trnameObjectWafProfileUrlaccessAccesspattern", &fortimanager.ObjectWafProfileUrlaccessAccesspatternArgs{
Profile: trnameObjectWafProfile.Name,
UrlAccess: trname2.Fosid,
Fosid: pulumi.Float64(1),
Negate: pulumi.String("enable"),
}, pulumi.DependsOn([]pulumi.Resource{
trname2,
}))
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 trname2 = new Fortimanager.ObjectWafProfileUrlaccess("trname2", new()
{
Fosid = 13,
Profile = trnameObjectWafProfile.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectWafProfile,
},
});
var trnameObjectWafProfileUrlaccessAccesspattern = new Fortimanager.ObjectWafProfileUrlaccessAccesspattern("trnameObjectWafProfileUrlaccessAccesspattern", new()
{
Profile = trnameObjectWafProfile.Name,
UrlAccess = trname2.Fosid,
Fosid = 1,
Negate = "enable",
}, new CustomResourceOptions
{
DependsOn =
{
trname2,
},
});
});
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.fortimanager.ObjectWafProfileUrlaccessAccesspattern;
import com.pulumi.fortimanager.ObjectWafProfileUrlaccessAccesspatternArgs;
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 trname2 = new ObjectWafProfileUrlaccess("trname2", ObjectWafProfileUrlaccessArgs.builder()
.fosid(13)
.profile(trnameObjectWafProfile.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectWafProfile)
.build());
var trnameObjectWafProfileUrlaccessAccesspattern = new ObjectWafProfileUrlaccessAccesspattern("trnameObjectWafProfileUrlaccessAccesspattern", ObjectWafProfileUrlaccessAccesspatternArgs.builder()
.profile(trnameObjectWafProfile.name())
.urlAccess(trname2.fosid())
.fosid(1)
.negate("enable")
.build(), CustomResourceOptions.builder()
.dependsOn(trname2)
.build());
}
}
resources:
trnameObjectWafProfileUrlaccessAccesspattern:
type: fortimanager:ObjectWafProfileUrlaccessAccesspattern
properties:
profile: ${trnameObjectWafProfile.name}
urlAccess: ${trname2.fosid}
fosid: 1
negate: enable
options:
dependsOn:
- ${trname2}
trname2:
type: fortimanager:ObjectWafProfileUrlaccess
properties:
fosid: 13
profile: ${trnameObjectWafProfile.name}
options:
dependsOn:
- ${trnameObjectWafProfile}
trnameObjectWafProfile:
type: fortimanager:ObjectWafProfile
Create ObjectWafProfileUrlaccessAccesspattern Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWafProfileUrlaccessAccesspattern(name: string, args: ObjectWafProfileUrlaccessAccesspatternArgs, opts?: CustomResourceOptions);
@overload
def ObjectWafProfileUrlaccessAccesspattern(resource_name: str,
args: ObjectWafProfileUrlaccessAccesspatternArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWafProfileUrlaccessAccesspattern(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile: Optional[str] = None,
url_access: Optional[str] = None,
adom: Optional[str] = None,
fosid: Optional[float] = None,
negate: Optional[str] = None,
object_waf_profile_urlaccess_accesspattern_id: Optional[str] = None,
pattern: Optional[str] = None,
regex: Optional[str] = None,
scopetype: Optional[str] = None,
srcaddr: Optional[str] = None)
func NewObjectWafProfileUrlaccessAccesspattern(ctx *Context, name string, args ObjectWafProfileUrlaccessAccesspatternArgs, opts ...ResourceOption) (*ObjectWafProfileUrlaccessAccesspattern, error)
public ObjectWafProfileUrlaccessAccesspattern(string name, ObjectWafProfileUrlaccessAccesspatternArgs args, CustomResourceOptions? opts = null)
public ObjectWafProfileUrlaccessAccesspattern(String name, ObjectWafProfileUrlaccessAccesspatternArgs args)
public ObjectWafProfileUrlaccessAccesspattern(String name, ObjectWafProfileUrlaccessAccesspatternArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWafProfileUrlaccessAccesspattern
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 ObjectWafProfileUrlaccessAccesspatternArgs
- 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 ObjectWafProfileUrlaccessAccesspatternArgs
- 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 ObjectWafProfileUrlaccessAccesspatternArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWafProfileUrlaccessAccesspatternArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWafProfileUrlaccessAccesspatternArgs
- 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 objectWafProfileUrlaccessAccesspatternResource = new Fortimanager.ObjectWafProfileUrlaccessAccesspattern("objectWafProfileUrlaccessAccesspatternResource", new()
{
Profile = "string",
UrlAccess = "string",
Adom = "string",
Fosid = 0,
Negate = "string",
ObjectWafProfileUrlaccessAccesspatternId = "string",
Pattern = "string",
Regex = "string",
Scopetype = "string",
Srcaddr = "string",
});
example, err := fortimanager.NewObjectWafProfileUrlaccessAccesspattern(ctx, "objectWafProfileUrlaccessAccesspatternResource", &fortimanager.ObjectWafProfileUrlaccessAccesspatternArgs{
Profile: pulumi.String("string"),
UrlAccess: pulumi.String("string"),
Adom: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Negate: pulumi.String("string"),
ObjectWafProfileUrlaccessAccesspatternId: pulumi.String("string"),
Pattern: pulumi.String("string"),
Regex: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Srcaddr: pulumi.String("string"),
})
var objectWafProfileUrlaccessAccesspatternResource = new ObjectWafProfileUrlaccessAccesspattern("objectWafProfileUrlaccessAccesspatternResource", ObjectWafProfileUrlaccessAccesspatternArgs.builder()
.profile("string")
.urlAccess("string")
.adom("string")
.fosid(0)
.negate("string")
.objectWafProfileUrlaccessAccesspatternId("string")
.pattern("string")
.regex("string")
.scopetype("string")
.srcaddr("string")
.build());
object_waf_profile_urlaccess_accesspattern_resource = fortimanager.ObjectWafProfileUrlaccessAccesspattern("objectWafProfileUrlaccessAccesspatternResource",
profile="string",
url_access="string",
adom="string",
fosid=0,
negate="string",
object_waf_profile_urlaccess_accesspattern_id="string",
pattern="string",
regex="string",
scopetype="string",
srcaddr="string")
const objectWafProfileUrlaccessAccesspatternResource = new fortimanager.ObjectWafProfileUrlaccessAccesspattern("objectWafProfileUrlaccessAccesspatternResource", {
profile: "string",
urlAccess: "string",
adom: "string",
fosid: 0,
negate: "string",
objectWafProfileUrlaccessAccesspatternId: "string",
pattern: "string",
regex: "string",
scopetype: "string",
srcaddr: "string",
});
type: fortimanager:ObjectWafProfileUrlaccessAccesspattern
properties:
adom: string
fosid: 0
negate: string
objectWafProfileUrlaccessAccesspatternId: string
pattern: string
profile: string
regex: string
scopetype: string
srcaddr: string
urlAccess: string
ObjectWafProfileUrlaccessAccesspattern 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 ObjectWafProfileUrlaccessAccesspattern resource accepts the following input properties:
- Profile string
- Profile.
- Url
Access string - Url Access.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid double
- URL access pattern ID.
- Negate string
- Enable/disable match negation. Valid values:
disable
,enable
. - Object
Waf stringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- Pattern string
- URL pattern.
- Regex string
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - Srcaddr string
- Source address.
- Profile string
- Profile.
- Url
Access string - Url Access.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- URL access pattern ID.
- Negate string
- Enable/disable match negation. Valid values:
disable
,enable
. - Object
Waf stringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- Pattern string
- URL pattern.
- Regex string
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - Srcaddr string
- Source address.
- profile String
- Profile.
- url
Access String - Url Access.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- URL access pattern ID.
- negate String
- Enable/disable match negation. Valid values:
disable
,enable
. - object
Waf StringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- pattern String
- URL pattern.
- regex String
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - srcaddr String
- Source address.
- profile string
- Profile.
- url
Access string - Url Access.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- URL access pattern ID.
- negate string
- Enable/disable match negation. Valid values:
disable
,enable
. - object
Waf stringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- pattern string
- URL pattern.
- regex string
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - srcaddr string
- Source address.
- profile str
- Profile.
- url_
access str - Url Access.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid float
- URL access pattern ID.
- negate str
- Enable/disable match negation. Valid values:
disable
,enable
. - object_
waf_ strprofile_ urlaccess_ accesspattern_ id - an identifier for the resource with format {{fosid}}.
- pattern str
- URL pattern.
- regex str
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - srcaddr str
- Source address.
- profile String
- Profile.
- url
Access String - Url Access.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- URL access pattern ID.
- negate String
- Enable/disable match negation. Valid values:
disable
,enable
. - object
Waf StringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- pattern String
- URL pattern.
- regex String
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - srcaddr String
- Source address.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWafProfileUrlaccessAccesspattern 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 ObjectWafProfileUrlaccessAccesspattern Resource
Get an existing ObjectWafProfileUrlaccessAccesspattern 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?: ObjectWafProfileUrlaccessAccesspatternState, opts?: CustomResourceOptions): ObjectWafProfileUrlaccessAccesspattern
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
fosid: Optional[float] = None,
negate: Optional[str] = None,
object_waf_profile_urlaccess_accesspattern_id: Optional[str] = None,
pattern: Optional[str] = None,
profile: Optional[str] = None,
regex: Optional[str] = None,
scopetype: Optional[str] = None,
srcaddr: Optional[str] = None,
url_access: Optional[str] = None) -> ObjectWafProfileUrlaccessAccesspattern
func GetObjectWafProfileUrlaccessAccesspattern(ctx *Context, name string, id IDInput, state *ObjectWafProfileUrlaccessAccesspatternState, opts ...ResourceOption) (*ObjectWafProfileUrlaccessAccesspattern, error)
public static ObjectWafProfileUrlaccessAccesspattern Get(string name, Input<string> id, ObjectWafProfileUrlaccessAccesspatternState? state, CustomResourceOptions? opts = null)
public static ObjectWafProfileUrlaccessAccesspattern get(String name, Output<String> id, ObjectWafProfileUrlaccessAccesspatternState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWafProfileUrlaccessAccesspattern 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid double
- URL access pattern ID.
- Negate string
- Enable/disable match negation. Valid values:
disable
,enable
. - Object
Waf stringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- Pattern string
- URL pattern.
- Profile string
- Profile.
- Regex string
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - Srcaddr string
- Source address.
- Url
Access string - Url Access.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- URL access pattern ID.
- Negate string
- Enable/disable match negation. Valid values:
disable
,enable
. - Object
Waf stringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- Pattern string
- URL pattern.
- Profile string
- Profile.
- Regex string
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - Srcaddr string
- Source address.
- Url
Access string - Url Access.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- URL access pattern ID.
- negate String
- Enable/disable match negation. Valid values:
disable
,enable
. - object
Waf StringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- pattern String
- URL pattern.
- profile String
- Profile.
- regex String
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - srcaddr String
- Source address.
- url
Access String - Url Access.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- URL access pattern ID.
- negate string
- Enable/disable match negation. Valid values:
disable
,enable
. - object
Waf stringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- pattern string
- URL pattern.
- profile string
- Profile.
- regex string
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - srcaddr string
- Source address.
- url
Access string - Url Access.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid float
- URL access pattern ID.
- negate str
- Enable/disable match negation. Valid values:
disable
,enable
. - object_
waf_ strprofile_ urlaccess_ accesspattern_ id - an identifier for the resource with format {{fosid}}.
- pattern str
- URL pattern.
- profile str
- Profile.
- regex str
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - srcaddr str
- Source address.
- url_
access str - Url Access.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- URL access pattern ID.
- negate String
- Enable/disable match negation. Valid values:
disable
,enable
. - object
Waf StringProfile Urlaccess Accesspattern Id - an identifier for the resource with format {{fosid}}.
- pattern String
- URL pattern.
- profile String
- Profile.
- regex String
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - 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
. - srcaddr String
- Source address.
- url
Access String - Url Access.
Import
ObjectWaf ProfileUrlAccessAccessPattern can be imported using any of these accepted formats:
Set import_options = [“profile=YOUR_VALUE”, “url_access=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWafProfileUrlaccessAccesspattern:ObjectWafProfileUrlaccessAccesspattern 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.