fortimanager.SystemLocalinpolicy
Explore with Pulumi AI
IPv4 local in policy configuration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystemLocalinpolicy("trname", {
action: "accept",
dport: 0,
dsts: [
"1.2.3.4",
"255.255.255.0",
],
fosid: 1,
intf: "port5",
protocol: "udp",
srcs: [
"4.5.6.6",
"255.255.255.0",
],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystemLocalinpolicy("trname",
action="accept",
dport=0,
dsts=[
"1.2.3.4",
"255.255.255.0",
],
fosid=1,
intf="port5",
protocol="udp",
srcs=[
"4.5.6.6",
"255.255.255.0",
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewSystemLocalinpolicy(ctx, "trname", &fortimanager.SystemLocalinpolicyArgs{
Action: pulumi.String("accept"),
Dport: pulumi.Float64(0),
Dsts: pulumi.StringArray{
pulumi.String("1.2.3.4"),
pulumi.String("255.255.255.0"),
},
Fosid: pulumi.Float64(1),
Intf: pulumi.String("port5"),
Protocol: pulumi.String("udp"),
Srcs: pulumi.StringArray{
pulumi.String("4.5.6.6"),
pulumi.String("255.255.255.0"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.SystemLocalinpolicy("trname", new()
{
Action = "accept",
Dport = 0,
Dsts = new[]
{
"1.2.3.4",
"255.255.255.0",
},
Fosid = 1,
Intf = "port5",
Protocol = "udp",
Srcs = new[]
{
"4.5.6.6",
"255.255.255.0",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemLocalinpolicy;
import com.pulumi.fortimanager.SystemLocalinpolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new SystemLocalinpolicy("trname", SystemLocalinpolicyArgs.builder()
.action("accept")
.dport(0)
.dsts(
"1.2.3.4",
"255.255.255.0")
.fosid(1)
.intf("port5")
.protocol("udp")
.srcs(
"4.5.6.6",
"255.255.255.0")
.build());
}
}
resources:
trname:
type: fortimanager:SystemLocalinpolicy
properties:
action: accept
dport: 0
dsts:
- 1.2.3.4
- 255.255.255.0
fosid: 1
intf: port5
protocol: udp
srcs:
- 4.5.6.6
- 255.255.255.0
Create SystemLocalinpolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemLocalinpolicy(name: string, args?: SystemLocalinpolicyArgs, opts?: CustomResourceOptions);
@overload
def SystemLocalinpolicy(resource_name: str,
args: Optional[SystemLocalinpolicyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemLocalinpolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
dport: Optional[float] = None,
dsts: Optional[Sequence[str]] = None,
fosid: Optional[float] = None,
intf: Optional[str] = None,
protocol: Optional[str] = None,
srcs: Optional[Sequence[str]] = None,
system_localinpolicy_id: Optional[str] = None)
func NewSystemLocalinpolicy(ctx *Context, name string, args *SystemLocalinpolicyArgs, opts ...ResourceOption) (*SystemLocalinpolicy, error)
public SystemLocalinpolicy(string name, SystemLocalinpolicyArgs? args = null, CustomResourceOptions? opts = null)
public SystemLocalinpolicy(String name, SystemLocalinpolicyArgs args)
public SystemLocalinpolicy(String name, SystemLocalinpolicyArgs args, CustomResourceOptions options)
type: fortimanager:SystemLocalinpolicy
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 SystemLocalinpolicyArgs
- 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 SystemLocalinpolicyArgs
- 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 SystemLocalinpolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemLocalinpolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemLocalinpolicyArgs
- 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 systemLocalinpolicyResource = new Fortimanager.SystemLocalinpolicy("systemLocalinpolicyResource", new()
{
Action = "string",
Dport = 0,
Dsts = new[]
{
"string",
},
Fosid = 0,
Intf = "string",
Protocol = "string",
Srcs = new[]
{
"string",
},
SystemLocalinpolicyId = "string",
});
example, err := fortimanager.NewSystemLocalinpolicy(ctx, "systemLocalinpolicyResource", &fortimanager.SystemLocalinpolicyArgs{
Action: pulumi.String("string"),
Dport: pulumi.Float64(0),
Dsts: pulumi.StringArray{
pulumi.String("string"),
},
Fosid: pulumi.Float64(0),
Intf: pulumi.String("string"),
Protocol: pulumi.String("string"),
Srcs: pulumi.StringArray{
pulumi.String("string"),
},
SystemLocalinpolicyId: pulumi.String("string"),
})
var systemLocalinpolicyResource = new SystemLocalinpolicy("systemLocalinpolicyResource", SystemLocalinpolicyArgs.builder()
.action("string")
.dport(0)
.dsts("string")
.fosid(0)
.intf("string")
.protocol("string")
.srcs("string")
.systemLocalinpolicyId("string")
.build());
system_localinpolicy_resource = fortimanager.SystemLocalinpolicy("systemLocalinpolicyResource",
action="string",
dport=0,
dsts=["string"],
fosid=0,
intf="string",
protocol="string",
srcs=["string"],
system_localinpolicy_id="string")
const systemLocalinpolicyResource = new fortimanager.SystemLocalinpolicy("systemLocalinpolicyResource", {
action: "string",
dport: 0,
dsts: ["string"],
fosid: 0,
intf: "string",
protocol: "string",
srcs: ["string"],
systemLocalinpolicyId: "string",
});
type: fortimanager:SystemLocalinpolicy
properties:
action: string
dport: 0
dsts:
- string
fosid: 0
intf: string
protocol: string
srcs:
- string
systemLocalinpolicyId: string
SystemLocalinpolicy 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 SystemLocalinpolicy resource accepts the following input properties:
- Action string
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - Dport double
- Destination port number (0 for all).
- Dsts List<string>
- Destination IP and mask.
- Fosid double
- Entry number.
- Intf string
- Incoming interface name.
- Protocol string
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - Srcs List<string>
- Source IP and mask.
- System
Localinpolicy stringId - an identifier for the resource with format {{fosid}}.
- Action string
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - Dport float64
- Destination port number (0 for all).
- Dsts []string
- Destination IP and mask.
- Fosid float64
- Entry number.
- Intf string
- Incoming interface name.
- Protocol string
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - Srcs []string
- Source IP and mask.
- System
Localinpolicy stringId - an identifier for the resource with format {{fosid}}.
- action String
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - dport Double
- Destination port number (0 for all).
- dsts List<String>
- Destination IP and mask.
- fosid Double
- Entry number.
- intf String
- Incoming interface name.
- protocol String
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - srcs List<String>
- Source IP and mask.
- system
Localinpolicy StringId - an identifier for the resource with format {{fosid}}.
- action string
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - dport number
- Destination port number (0 for all).
- dsts string[]
- Destination IP and mask.
- fosid number
- Entry number.
- intf string
- Incoming interface name.
- protocol string
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - srcs string[]
- Source IP and mask.
- system
Localinpolicy stringId - an identifier for the resource with format {{fosid}}.
- action str
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - dport float
- Destination port number (0 for all).
- dsts Sequence[str]
- Destination IP and mask.
- fosid float
- Entry number.
- intf str
- Incoming interface name.
- protocol str
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - srcs Sequence[str]
- Source IP and mask.
- system_
localinpolicy_ strid - an identifier for the resource with format {{fosid}}.
- action String
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - dport Number
- Destination port number (0 for all).
- dsts List<String>
- Destination IP and mask.
- fosid Number
- Entry number.
- intf String
- Incoming interface name.
- protocol String
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - srcs List<String>
- Source IP and mask.
- system
Localinpolicy StringId - an identifier for the resource with format {{fosid}}.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemLocalinpolicy 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 SystemLocalinpolicy Resource
Get an existing SystemLocalinpolicy 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?: SystemLocalinpolicyState, opts?: CustomResourceOptions): SystemLocalinpolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
dport: Optional[float] = None,
dsts: Optional[Sequence[str]] = None,
fosid: Optional[float] = None,
intf: Optional[str] = None,
protocol: Optional[str] = None,
srcs: Optional[Sequence[str]] = None,
system_localinpolicy_id: Optional[str] = None) -> SystemLocalinpolicy
func GetSystemLocalinpolicy(ctx *Context, name string, id IDInput, state *SystemLocalinpolicyState, opts ...ResourceOption) (*SystemLocalinpolicy, error)
public static SystemLocalinpolicy Get(string name, Input<string> id, SystemLocalinpolicyState? state, CustomResourceOptions? opts = null)
public static SystemLocalinpolicy get(String name, Output<String> id, SystemLocalinpolicyState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystemLocalinpolicy 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 performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - Dport double
- Destination port number (0 for all).
- Dsts List<string>
- Destination IP and mask.
- Fosid double
- Entry number.
- Intf string
- Incoming interface name.
- Protocol string
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - Srcs List<string>
- Source IP and mask.
- System
Localinpolicy stringId - an identifier for the resource with format {{fosid}}.
- Action string
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - Dport float64
- Destination port number (0 for all).
- Dsts []string
- Destination IP and mask.
- Fosid float64
- Entry number.
- Intf string
- Incoming interface name.
- Protocol string
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - Srcs []string
- Source IP and mask.
- System
Localinpolicy stringId - an identifier for the resource with format {{fosid}}.
- action String
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - dport Double
- Destination port number (0 for all).
- dsts List<String>
- Destination IP and mask.
- fosid Double
- Entry number.
- intf String
- Incoming interface name.
- protocol String
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - srcs List<String>
- Source IP and mask.
- system
Localinpolicy StringId - an identifier for the resource with format {{fosid}}.
- action string
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - dport number
- Destination port number (0 for all).
- dsts string[]
- Destination IP and mask.
- fosid number
- Entry number.
- intf string
- Incoming interface name.
- protocol string
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - srcs string[]
- Source IP and mask.
- system
Localinpolicy stringId - an identifier for the resource with format {{fosid}}.
- action str
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - dport float
- Destination port number (0 for all).
- dsts Sequence[str]
- Destination IP and mask.
- fosid float
- Entry number.
- intf str
- Incoming interface name.
- protocol str
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - srcs Sequence[str]
- Source IP and mask.
- system_
localinpolicy_ strid - an identifier for the resource with format {{fosid}}.
- action String
- Action performed on traffic matching this policy. drop - Drop traffic matching this policy (default). reject - Reject traffic matching this policy. accept - Allow traffic matching this policy. Valid values:
drop
,reject
,accept
. - dport Number
- Destination port number (0 for all).
- dsts List<String>
- Destination IP and mask.
- fosid Number
- Entry number.
- intf String
- Incoming interface name.
- protocol String
- Traffic protocol. tcp - TCP only. udp - UDP only. tcp_udp - Both TCP and UDP. Valid values:
tcp
,udp
,tcp_udp
. - srcs List<String>
- Source IP and mask.
- system
Localinpolicy StringId - an identifier for the resource with format {{fosid}}.
Import
System LocalInPolicy can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systemLocalinpolicy:SystemLocalinpolicy labelname {{fosid}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
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.