Configure PFCP.
Create ObjectFirewallPfcp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallPfcp(name: string, args?: ObjectFirewallPfcpArgs, opts?: CustomResourceOptions);@overload
def ObjectFirewallPfcp(resource_name: str,
args: Optional[ObjectFirewallPfcpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallPfcp(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
denied_log: Optional[str] = None,
forwarded_log: Optional[str] = None,
invalid_reserved_field: Optional[str] = None,
log_freq: Optional[float] = None,
max_message_length: Optional[float] = None,
message_filters: Optional[Sequence[str]] = None,
min_message_length: Optional[float] = None,
monitor_mode: Optional[str] = None,
name: Optional[str] = None,
object_firewall_pfcp_id: Optional[str] = None,
pfcp_timeout: Optional[float] = None,
scopetype: Optional[str] = None,
traffic_count_log: Optional[str] = None,
unknown_version: Optional[str] = None)func NewObjectFirewallPfcp(ctx *Context, name string, args *ObjectFirewallPfcpArgs, opts ...ResourceOption) (*ObjectFirewallPfcp, error)public ObjectFirewallPfcp(string name, ObjectFirewallPfcpArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallPfcp(String name, ObjectFirewallPfcpArgs args)
public ObjectFirewallPfcp(String name, ObjectFirewallPfcpArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallPfcp
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 ObjectFirewallPfcpArgs
- 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 ObjectFirewallPfcpArgs
- 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 ObjectFirewallPfcpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallPfcpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallPfcpArgs
- 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 objectFirewallPfcpResource = new Fortimanager.ObjectFirewallPfcp("objectFirewallPfcpResource", new()
{
Adom = "string",
DeniedLog = "string",
ForwardedLog = "string",
InvalidReservedField = "string",
LogFreq = 0,
MaxMessageLength = 0,
MessageFilters = new[]
{
"string",
},
MinMessageLength = 0,
MonitorMode = "string",
Name = "string",
ObjectFirewallPfcpId = "string",
PfcpTimeout = 0,
Scopetype = "string",
TrafficCountLog = "string",
UnknownVersion = "string",
});
example, err := fortimanager.NewObjectFirewallPfcp(ctx, "objectFirewallPfcpResource", &fortimanager.ObjectFirewallPfcpArgs{
Adom: pulumi.String("string"),
DeniedLog: pulumi.String("string"),
ForwardedLog: pulumi.String("string"),
InvalidReservedField: pulumi.String("string"),
LogFreq: pulumi.Float64(0),
MaxMessageLength: pulumi.Float64(0),
MessageFilters: pulumi.StringArray{
pulumi.String("string"),
},
MinMessageLength: pulumi.Float64(0),
MonitorMode: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectFirewallPfcpId: pulumi.String("string"),
PfcpTimeout: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
TrafficCountLog: pulumi.String("string"),
UnknownVersion: pulumi.String("string"),
})
var objectFirewallPfcpResource = new ObjectFirewallPfcp("objectFirewallPfcpResource", ObjectFirewallPfcpArgs.builder()
.adom("string")
.deniedLog("string")
.forwardedLog("string")
.invalidReservedField("string")
.logFreq(0.0)
.maxMessageLength(0.0)
.messageFilters("string")
.minMessageLength(0.0)
.monitorMode("string")
.name("string")
.objectFirewallPfcpId("string")
.pfcpTimeout(0.0)
.scopetype("string")
.trafficCountLog("string")
.unknownVersion("string")
.build());
object_firewall_pfcp_resource = fortimanager.ObjectFirewallPfcp("objectFirewallPfcpResource",
adom="string",
denied_log="string",
forwarded_log="string",
invalid_reserved_field="string",
log_freq=0,
max_message_length=0,
message_filters=["string"],
min_message_length=0,
monitor_mode="string",
name="string",
object_firewall_pfcp_id="string",
pfcp_timeout=0,
scopetype="string",
traffic_count_log="string",
unknown_version="string")
const objectFirewallPfcpResource = new fortimanager.ObjectFirewallPfcp("objectFirewallPfcpResource", {
adom: "string",
deniedLog: "string",
forwardedLog: "string",
invalidReservedField: "string",
logFreq: 0,
maxMessageLength: 0,
messageFilters: ["string"],
minMessageLength: 0,
monitorMode: "string",
name: "string",
objectFirewallPfcpId: "string",
pfcpTimeout: 0,
scopetype: "string",
trafficCountLog: "string",
unknownVersion: "string",
});
type: fortimanager:ObjectFirewallPfcp
properties:
adom: string
deniedLog: string
forwardedLog: string
invalidReservedField: string
logFreq: 0
maxMessageLength: 0
messageFilters:
- string
minMessageLength: 0
monitorMode: string
name: string
objectFirewallPfcpId: string
pfcpTimeout: 0
scopetype: string
trafficCountLog: string
unknownVersion: string
ObjectFirewallPfcp 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 ObjectFirewallPfcp resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - Denied
Log string - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - Forwarded
Log string - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - Invalid
Reserved stringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - Log
Freq double - Logging frequency of PFCP packets.
- Max
Message doubleLength - Maximum message length.
- Message
Filters List<string> - PFCP message filter.
- Min
Message doubleLength - Minimum message length.
- Monitor
Mode string - PFCP monitor mode. Valid values:
disable,enable,vdom. - Name string
- PFCP profile name.
- Object
Firewall stringPfcp Id - an identifier for the resource with format {{name}}.
- Pfcp
Timeout double - Set PFCP timeout (in seconds).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - Traffic
Count stringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - Unknown
Version string - Allow or deny unknown version packets. Valid values:
deny,allow.
- Adom string
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - Denied
Log string - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - Forwarded
Log string - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - Invalid
Reserved stringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - Log
Freq float64 - Logging frequency of PFCP packets.
- Max
Message float64Length - Maximum message length.
- Message
Filters []string - PFCP message filter.
- Min
Message float64Length - Minimum message length.
- Monitor
Mode string - PFCP monitor mode. Valid values:
disable,enable,vdom. - Name string
- PFCP profile name.
- Object
Firewall stringPfcp Id - an identifier for the resource with format {{name}}.
- Pfcp
Timeout float64 - Set PFCP timeout (in seconds).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - Traffic
Count stringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - Unknown
Version string - Allow or deny unknown version packets. Valid values:
deny,allow.
- adom String
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - denied
Log String - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - forwarded
Log String - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - invalid
Reserved StringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - log
Freq Double - Logging frequency of PFCP packets.
- max
Message DoubleLength - Maximum message length.
- message
Filters List<String> - PFCP message filter.
- min
Message DoubleLength - Minimum message length.
- monitor
Mode String - PFCP monitor mode. Valid values:
disable,enable,vdom. - name String
- PFCP profile name.
- object
Firewall StringPfcp Id - an identifier for the resource with format {{name}}.
- pfcp
Timeout Double - Set PFCP timeout (in seconds).
- scopetype String
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - traffic
Count StringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - unknown
Version String - Allow or deny unknown version packets. Valid values:
deny,allow.
- adom string
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - denied
Log string - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - forwarded
Log string - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - invalid
Reserved stringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - log
Freq number - Logging frequency of PFCP packets.
- max
Message numberLength - Maximum message length.
- message
Filters string[] - PFCP message filter.
- min
Message numberLength - Minimum message length.
- monitor
Mode string - PFCP monitor mode. Valid values:
disable,enable,vdom. - name string
- PFCP profile name.
- object
Firewall stringPfcp Id - an identifier for the resource with format {{name}}.
- pfcp
Timeout number - Set PFCP timeout (in seconds).
- scopetype string
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - traffic
Count stringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - unknown
Version string - Allow or deny unknown version packets. Valid values:
deny,allow.
- adom str
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - denied_
log str - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - forwarded_
log str - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - invalid_
reserved_ strfield - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - log_
freq float - Logging frequency of PFCP packets.
- max_
message_ floatlength - Maximum message length.
- message_
filters Sequence[str] - PFCP message filter.
- min_
message_ floatlength - Minimum message length.
- monitor_
mode str - PFCP monitor mode. Valid values:
disable,enable,vdom. - name str
- PFCP profile name.
- object_
firewall_ strpfcp_ id - an identifier for the resource with format {{name}}.
- pfcp_
timeout float - Set PFCP timeout (in seconds).
- scopetype str
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - traffic_
count_ strlog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - unknown_
version str - Allow or deny unknown version packets. Valid values:
deny,allow.
- adom String
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - denied
Log String - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - forwarded
Log String - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - invalid
Reserved StringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - log
Freq Number - Logging frequency of PFCP packets.
- max
Message NumberLength - Maximum message length.
- message
Filters List<String> - PFCP message filter.
- min
Message NumberLength - Minimum message length.
- monitor
Mode String - PFCP monitor mode. Valid values:
disable,enable,vdom. - name String
- PFCP profile name.
- object
Firewall StringPfcp Id - an identifier for the resource with format {{name}}.
- pfcp
Timeout Number - Set PFCP timeout (in seconds).
- scopetype String
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - traffic
Count StringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - unknown
Version String - Allow or deny unknown version packets. Valid values:
deny,allow.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallPfcp 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 ObjectFirewallPfcp Resource
Get an existing ObjectFirewallPfcp 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?: ObjectFirewallPfcpState, opts?: CustomResourceOptions): ObjectFirewallPfcp@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
denied_log: Optional[str] = None,
forwarded_log: Optional[str] = None,
invalid_reserved_field: Optional[str] = None,
log_freq: Optional[float] = None,
max_message_length: Optional[float] = None,
message_filters: Optional[Sequence[str]] = None,
min_message_length: Optional[float] = None,
monitor_mode: Optional[str] = None,
name: Optional[str] = None,
object_firewall_pfcp_id: Optional[str] = None,
pfcp_timeout: Optional[float] = None,
scopetype: Optional[str] = None,
traffic_count_log: Optional[str] = None,
unknown_version: Optional[str] = None) -> ObjectFirewallPfcpfunc GetObjectFirewallPfcp(ctx *Context, name string, id IDInput, state *ObjectFirewallPfcpState, opts ...ResourceOption) (*ObjectFirewallPfcp, error)public static ObjectFirewallPfcp Get(string name, Input<string> id, ObjectFirewallPfcpState? state, CustomResourceOptions? opts = null)public static ObjectFirewallPfcp get(String name, Output<String> id, ObjectFirewallPfcpState state, CustomResourceOptions options)resources: _: type: fortimanager:ObjectFirewallPfcp 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
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - Denied
Log string - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - Forwarded
Log string - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - Invalid
Reserved stringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - Log
Freq double - Logging frequency of PFCP packets.
- Max
Message doubleLength - Maximum message length.
- Message
Filters List<string> - PFCP message filter.
- Min
Message doubleLength - Minimum message length.
- Monitor
Mode string - PFCP monitor mode. Valid values:
disable,enable,vdom. - Name string
- PFCP profile name.
- Object
Firewall stringPfcp Id - an identifier for the resource with format {{name}}.
- Pfcp
Timeout double - Set PFCP timeout (in seconds).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - Traffic
Count stringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - Unknown
Version string - Allow or deny unknown version packets. Valid values:
deny,allow.
- Adom string
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - Denied
Log string - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - Forwarded
Log string - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - Invalid
Reserved stringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - Log
Freq float64 - Logging frequency of PFCP packets.
- Max
Message float64Length - Maximum message length.
- Message
Filters []string - PFCP message filter.
- Min
Message float64Length - Minimum message length.
- Monitor
Mode string - PFCP monitor mode. Valid values:
disable,enable,vdom. - Name string
- PFCP profile name.
- Object
Firewall stringPfcp Id - an identifier for the resource with format {{name}}.
- Pfcp
Timeout float64 - Set PFCP timeout (in seconds).
- Scopetype string
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - Traffic
Count stringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - Unknown
Version string - Allow or deny unknown version packets. Valid values:
deny,allow.
- adom String
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - denied
Log String - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - forwarded
Log String - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - invalid
Reserved StringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - log
Freq Double - Logging frequency of PFCP packets.
- max
Message DoubleLength - Maximum message length.
- message
Filters List<String> - PFCP message filter.
- min
Message DoubleLength - Minimum message length.
- monitor
Mode String - PFCP monitor mode. Valid values:
disable,enable,vdom. - name String
- PFCP profile name.
- object
Firewall StringPfcp Id - an identifier for the resource with format {{name}}.
- pfcp
Timeout Double - Set PFCP timeout (in seconds).
- scopetype String
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - traffic
Count StringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - unknown
Version String - Allow or deny unknown version packets. Valid values:
deny,allow.
- adom string
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - denied
Log string - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - forwarded
Log string - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - invalid
Reserved stringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - log
Freq number - Logging frequency of PFCP packets.
- max
Message numberLength - Maximum message length.
- message
Filters string[] - PFCP message filter.
- min
Message numberLength - Minimum message length.
- monitor
Mode string - PFCP monitor mode. Valid values:
disable,enable,vdom. - name string
- PFCP profile name.
- object
Firewall stringPfcp Id - an identifier for the resource with format {{name}}.
- pfcp
Timeout number - Set PFCP timeout (in seconds).
- scopetype string
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - traffic
Count stringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - unknown
Version string - Allow or deny unknown version packets. Valid values:
deny,allow.
- adom str
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - denied_
log str - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - forwarded_
log str - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - invalid_
reserved_ strfield - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - log_
freq float - Logging frequency of PFCP packets.
- max_
message_ floatlength - Maximum message length.
- message_
filters Sequence[str] - PFCP message filter.
- min_
message_ floatlength - Minimum message length.
- monitor_
mode str - PFCP monitor mode. Valid values:
disable,enable,vdom. - name str
- PFCP profile name.
- object_
firewall_ strpfcp_ id - an identifier for the resource with format {{name}}.
- pfcp_
timeout float - Set PFCP timeout (in seconds).
- scopetype str
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - traffic_
count_ strlog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - unknown_
version str - Allow or deny unknown version packets. Valid values:
deny,allow.
- adom String
- Adom. This value is valid only when the
scopetypeisadom, otherwise the value of adom in the provider will be inherited. - denied
Log String - Enable/disable logging denied PFCP packets. Valid values:
disable,enable. - forwarded
Log String - Enable/disable logging forwarded PFCP packets. Valid values:
disable,enable. - invalid
Reserved StringField - Allow or deny invalid reserved field in PFCP header packets. Valid values:
deny,allow. - log
Freq Number - Logging frequency of PFCP packets.
- max
Message NumberLength - Maximum message length.
- message
Filters List<String> - PFCP message filter.
- min
Message NumberLength - Minimum message length.
- monitor
Mode String - PFCP monitor mode. Valid values:
disable,enable,vdom. - name String
- PFCP profile name.
- object
Firewall StringPfcp Id - an identifier for the resource with format {{name}}.
- pfcp
Timeout Number - Set PFCP timeout (in seconds).
- scopetype String
- The scope of application of the resource. Valid values:
inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit. - traffic
Count StringLog - Enable/disable logging session traffic counter. Valid values:
disable,enable. - unknown
Version String - Allow or deny unknown version packets. Valid values:
deny,allow.
Import
ObjectFirewall Pfcp can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallPfcp:ObjectFirewallPfcp 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
fortimanagerTerraform Provider.
