1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. WantempSystemSdwanDuplication
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.WantempSystemSdwanDuplication

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Create SD-WAN duplication rule.

    This resource is a sub resource for variable duplication of resource fortimanager.WantempSystemSdwan. 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 trnameWanTemplate = new fortimanager.WanTemplate("trnameWanTemplate", {
        adom: "root",
        type: "wanprof",
    });
    const trnameWantempSystemSdwanDuplication = new fortimanager.WantempSystemSdwanDuplication("trnameWantempSystemSdwanDuplication", {
        dstaddr: "all",
        dstintf: "port4",
        fosid: 1,
        wanprof: trnameWanTemplate.name,
    }, {
        dependsOn: [trnameWanTemplate],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_wan_template = fortimanager.WanTemplate("trnameWanTemplate",
        adom="root",
        type="wanprof")
    trname_wantemp_system_sdwan_duplication = fortimanager.WantempSystemSdwanDuplication("trnameWantempSystemSdwanDuplication",
        dstaddr="all",
        dstintf="port4",
        fosid=1,
        wanprof=trname_wan_template.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_wan_template]))
    
    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 {
    		trnameWanTemplate, err := fortimanager.NewWanTemplate(ctx, "trnameWanTemplate", &fortimanager.WanTemplateArgs{
    			Adom: pulumi.String("root"),
    			Type: pulumi.String("wanprof"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewWantempSystemSdwanDuplication(ctx, "trnameWantempSystemSdwanDuplication", &fortimanager.WantempSystemSdwanDuplicationArgs{
    			Dstaddr: pulumi.String("all"),
    			Dstintf: pulumi.String("port4"),
    			Fosid:   pulumi.Float64(1),
    			Wanprof: trnameWanTemplate.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameWanTemplate,
    		}))
    		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 trnameWanTemplate = new Fortimanager.WanTemplate("trnameWanTemplate", new()
        {
            Adom = "root",
            Type = "wanprof",
        });
    
        var trnameWantempSystemSdwanDuplication = new Fortimanager.WantempSystemSdwanDuplication("trnameWantempSystemSdwanDuplication", new()
        {
            Dstaddr = "all",
            Dstintf = "port4",
            Fosid = 1,
            Wanprof = trnameWanTemplate.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameWanTemplate,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.WanTemplate;
    import com.pulumi.fortimanager.WanTemplateArgs;
    import com.pulumi.fortimanager.WantempSystemSdwanDuplication;
    import com.pulumi.fortimanager.WantempSystemSdwanDuplicationArgs;
    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 trnameWanTemplate = new WanTemplate("trnameWanTemplate", WanTemplateArgs.builder()
                .adom("root")
                .type("wanprof")
                .build());
    
            var trnameWantempSystemSdwanDuplication = new WantempSystemSdwanDuplication("trnameWantempSystemSdwanDuplication", WantempSystemSdwanDuplicationArgs.builder()
                .dstaddr("all")
                .dstintf("port4")
                .fosid(1)
                .wanprof(trnameWanTemplate.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameWanTemplate)
                    .build());
    
        }
    }
    
    resources:
      trnameWantempSystemSdwanDuplication:
        type: fortimanager:WantempSystemSdwanDuplication
        properties:
          dstaddr: all
          dstintf: port4
          fosid: 1
          wanprof: ${trnameWanTemplate.name}
        options:
          dependsOn:
            - ${trnameWanTemplate}
      trnameWanTemplate:
        type: fortimanager:WanTemplate
        properties:
          adom: root
          type: wanprof
    

    Create WantempSystemSdwanDuplication Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WantempSystemSdwanDuplication(name: string, args: WantempSystemSdwanDuplicationArgs, opts?: CustomResourceOptions);
    @overload
    def WantempSystemSdwanDuplication(resource_name: str,
                                      args: WantempSystemSdwanDuplicationInitArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def WantempSystemSdwanDuplication(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      wanprof: Optional[str] = None,
                                      service: Optional[str] = None,
                                      service_id: Optional[str] = None,
                                      dstintf: Optional[str] = None,
                                      fosid: Optional[float] = None,
                                      packet_de_duplication: Optional[str] = None,
                                      packet_duplication: Optional[str] = None,
                                      dstaddr6: Optional[str] = None,
                                      adom: Optional[str] = None,
                                      scopetype: Optional[str] = None,
                                      sla_match_service: Optional[str] = None,
                                      srcaddr: Optional[str] = None,
                                      srcaddr6: Optional[str] = None,
                                      srcintf: Optional[str] = None,
                                      dstaddr: Optional[str] = None,
                                      wantemp_system_sdwan_duplication_id: Optional[str] = None)
    func NewWantempSystemSdwanDuplication(ctx *Context, name string, args WantempSystemSdwanDuplicationArgs, opts ...ResourceOption) (*WantempSystemSdwanDuplication, error)
    public WantempSystemSdwanDuplication(string name, WantempSystemSdwanDuplicationArgs args, CustomResourceOptions? opts = null)
    public WantempSystemSdwanDuplication(String name, WantempSystemSdwanDuplicationArgs args)
    public WantempSystemSdwanDuplication(String name, WantempSystemSdwanDuplicationArgs args, CustomResourceOptions options)
    
    type: fortimanager:WantempSystemSdwanDuplication
    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 WantempSystemSdwanDuplicationArgs
    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 WantempSystemSdwanDuplicationInitArgs
    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 WantempSystemSdwanDuplicationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WantempSystemSdwanDuplicationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WantempSystemSdwanDuplicationArgs
    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 wantempSystemSdwanDuplicationResource = new Fortimanager.WantempSystemSdwanDuplication("wantempSystemSdwanDuplicationResource", new()
    {
        Wanprof = "string",
        Service = "string",
        ServiceId = "string",
        Dstintf = "string",
        Fosid = 0,
        PacketDeDuplication = "string",
        PacketDuplication = "string",
        Dstaddr6 = "string",
        Adom = "string",
        Scopetype = "string",
        SlaMatchService = "string",
        Srcaddr = "string",
        Srcaddr6 = "string",
        Srcintf = "string",
        Dstaddr = "string",
        WantempSystemSdwanDuplicationId = "string",
    });
    
    example, err := fortimanager.NewWantempSystemSdwanDuplication(ctx, "wantempSystemSdwanDuplicationResource", &fortimanager.WantempSystemSdwanDuplicationArgs{
    Wanprof: pulumi.String("string"),
    Service: pulumi.String("string"),
    ServiceId: pulumi.String("string"),
    Dstintf: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    PacketDeDuplication: pulumi.String("string"),
    PacketDuplication: pulumi.String("string"),
    Dstaddr6: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SlaMatchService: pulumi.String("string"),
    Srcaddr: pulumi.String("string"),
    Srcaddr6: pulumi.String("string"),
    Srcintf: pulumi.String("string"),
    Dstaddr: pulumi.String("string"),
    WantempSystemSdwanDuplicationId: pulumi.String("string"),
    })
    
    var wantempSystemSdwanDuplicationResource = new WantempSystemSdwanDuplication("wantempSystemSdwanDuplicationResource", WantempSystemSdwanDuplicationArgs.builder()
        .wanprof("string")
        .service("string")
        .serviceId("string")
        .dstintf("string")
        .fosid(0)
        .packetDeDuplication("string")
        .packetDuplication("string")
        .dstaddr6("string")
        .adom("string")
        .scopetype("string")
        .slaMatchService("string")
        .srcaddr("string")
        .srcaddr6("string")
        .srcintf("string")
        .dstaddr("string")
        .wantempSystemSdwanDuplicationId("string")
        .build());
    
    wantemp_system_sdwan_duplication_resource = fortimanager.WantempSystemSdwanDuplication("wantempSystemSdwanDuplicationResource",
        wanprof="string",
        service="string",
        service_id="string",
        dstintf="string",
        fosid=0,
        packet_de_duplication="string",
        packet_duplication="string",
        dstaddr6="string",
        adom="string",
        scopetype="string",
        sla_match_service="string",
        srcaddr="string",
        srcaddr6="string",
        srcintf="string",
        dstaddr="string",
        wantemp_system_sdwan_duplication_id="string")
    
    const wantempSystemSdwanDuplicationResource = new fortimanager.WantempSystemSdwanDuplication("wantempSystemSdwanDuplicationResource", {
        wanprof: "string",
        service: "string",
        serviceId: "string",
        dstintf: "string",
        fosid: 0,
        packetDeDuplication: "string",
        packetDuplication: "string",
        dstaddr6: "string",
        adom: "string",
        scopetype: "string",
        slaMatchService: "string",
        srcaddr: "string",
        srcaddr6: "string",
        srcintf: "string",
        dstaddr: "string",
        wantempSystemSdwanDuplicationId: "string",
    });
    
    type: fortimanager:WantempSystemSdwanDuplication
    properties:
        adom: string
        dstaddr: string
        dstaddr6: string
        dstintf: string
        fosid: 0
        packetDeDuplication: string
        packetDuplication: string
        scopetype: string
        service: string
        serviceId: string
        slaMatchService: string
        srcaddr: string
        srcaddr6: string
        srcintf: string
        wanprof: string
        wantempSystemSdwanDuplicationId: string
    

    WantempSystemSdwanDuplication 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 WantempSystemSdwanDuplication resource accepts the following input properties:

    Wanprof string
    Wanprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dstaddr string
    Destination address or address group names.
    Dstaddr6 string
    Destination address6 or address6 group names.
    Dstintf string
    Outgoing (egress) interfaces or zones.
    Fosid double
    Duplication rule ID (1 - 255).
    PacketDeDuplication string
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    PacketDuplication string
    Configure packet duplication method. Valid values: disable, force, on-demand.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Service string
    Service and service group name.
    ServiceId string
    SD-WAN service rule ID list.
    SlaMatchService string
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    Srcaddr string
    Source address or address group names.
    Srcaddr6 string
    Source address6 or address6 group names.
    Srcintf string
    Incoming (ingress) interfaces or zones.
    WantempSystemSdwanDuplicationId string
    an identifier for the resource with format {{fosid}}.
    Wanprof string
    Wanprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dstaddr string
    Destination address or address group names.
    Dstaddr6 string
    Destination address6 or address6 group names.
    Dstintf string
    Outgoing (egress) interfaces or zones.
    Fosid float64
    Duplication rule ID (1 - 255).
    PacketDeDuplication string
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    PacketDuplication string
    Configure packet duplication method. Valid values: disable, force, on-demand.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Service string
    Service and service group name.
    ServiceId string
    SD-WAN service rule ID list.
    SlaMatchService string
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    Srcaddr string
    Source address or address group names.
    Srcaddr6 string
    Source address6 or address6 group names.
    Srcintf string
    Incoming (ingress) interfaces or zones.
    WantempSystemSdwanDuplicationId string
    an identifier for the resource with format {{fosid}}.
    wanprof String
    Wanprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dstaddr String
    Destination address or address group names.
    dstaddr6 String
    Destination address6 or address6 group names.
    dstintf String
    Outgoing (egress) interfaces or zones.
    fosid Double
    Duplication rule ID (1 - 255).
    packetDeDuplication String
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    packetDuplication String
    Configure packet duplication method. Valid values: disable, force, on-demand.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    service String
    Service and service group name.
    serviceId String
    SD-WAN service rule ID list.
    slaMatchService String
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    srcaddr String
    Source address or address group names.
    srcaddr6 String
    Source address6 or address6 group names.
    srcintf String
    Incoming (ingress) interfaces or zones.
    wantempSystemSdwanDuplicationId String
    an identifier for the resource with format {{fosid}}.
    wanprof string
    Wanprof.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dstaddr string
    Destination address or address group names.
    dstaddr6 string
    Destination address6 or address6 group names.
    dstintf string
    Outgoing (egress) interfaces or zones.
    fosid number
    Duplication rule ID (1 - 255).
    packetDeDuplication string
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    packetDuplication string
    Configure packet duplication method. Valid values: disable, force, on-demand.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    service string
    Service and service group name.
    serviceId string
    SD-WAN service rule ID list.
    slaMatchService string
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    srcaddr string
    Source address or address group names.
    srcaddr6 string
    Source address6 or address6 group names.
    srcintf string
    Incoming (ingress) interfaces or zones.
    wantempSystemSdwanDuplicationId string
    an identifier for the resource with format {{fosid}}.
    wanprof str
    Wanprof.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dstaddr str
    Destination address or address group names.
    dstaddr6 str
    Destination address6 or address6 group names.
    dstintf str
    Outgoing (egress) interfaces or zones.
    fosid float
    Duplication rule ID (1 - 255).
    packet_de_duplication str
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    packet_duplication str
    Configure packet duplication method. Valid values: disable, force, on-demand.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    service str
    Service and service group name.
    service_id str
    SD-WAN service rule ID list.
    sla_match_service str
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    srcaddr str
    Source address or address group names.
    srcaddr6 str
    Source address6 or address6 group names.
    srcintf str
    Incoming (ingress) interfaces or zones.
    wantemp_system_sdwan_duplication_id str
    an identifier for the resource with format {{fosid}}.
    wanprof String
    Wanprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dstaddr String
    Destination address or address group names.
    dstaddr6 String
    Destination address6 or address6 group names.
    dstintf String
    Outgoing (egress) interfaces or zones.
    fosid Number
    Duplication rule ID (1 - 255).
    packetDeDuplication String
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    packetDuplication String
    Configure packet duplication method. Valid values: disable, force, on-demand.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    service String
    Service and service group name.
    serviceId String
    SD-WAN service rule ID list.
    slaMatchService String
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    srcaddr String
    Source address or address group names.
    srcaddr6 String
    Source address6 or address6 group names.
    srcintf String
    Incoming (ingress) interfaces or zones.
    wantempSystemSdwanDuplicationId String
    an identifier for the resource with format {{fosid}}.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WantempSystemSdwanDuplication 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 WantempSystemSdwanDuplication Resource

    Get an existing WantempSystemSdwanDuplication 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?: WantempSystemSdwanDuplicationState, opts?: CustomResourceOptions): WantempSystemSdwanDuplication
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dstaddr: Optional[str] = None,
            dstaddr6: Optional[str] = None,
            dstintf: Optional[str] = None,
            fosid: Optional[float] = None,
            packet_de_duplication: Optional[str] = None,
            packet_duplication: Optional[str] = None,
            scopetype: Optional[str] = None,
            service: Optional[str] = None,
            service_id: Optional[str] = None,
            sla_match_service: Optional[str] = None,
            srcaddr: Optional[str] = None,
            srcaddr6: Optional[str] = None,
            srcintf: Optional[str] = None,
            wanprof: Optional[str] = None,
            wantemp_system_sdwan_duplication_id: Optional[str] = None) -> WantempSystemSdwanDuplication
    func GetWantempSystemSdwanDuplication(ctx *Context, name string, id IDInput, state *WantempSystemSdwanDuplicationState, opts ...ResourceOption) (*WantempSystemSdwanDuplication, error)
    public static WantempSystemSdwanDuplication Get(string name, Input<string> id, WantempSystemSdwanDuplicationState? state, CustomResourceOptions? opts = null)
    public static WantempSystemSdwanDuplication get(String name, Output<String> id, WantempSystemSdwanDuplicationState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:WantempSystemSdwanDuplication    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.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dstaddr string
    Destination address or address group names.
    Dstaddr6 string
    Destination address6 or address6 group names.
    Dstintf string
    Outgoing (egress) interfaces or zones.
    Fosid double
    Duplication rule ID (1 - 255).
    PacketDeDuplication string
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    PacketDuplication string
    Configure packet duplication method. Valid values: disable, force, on-demand.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Service string
    Service and service group name.
    ServiceId string
    SD-WAN service rule ID list.
    SlaMatchService string
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    Srcaddr string
    Source address or address group names.
    Srcaddr6 string
    Source address6 or address6 group names.
    Srcintf string
    Incoming (ingress) interfaces or zones.
    Wanprof string
    Wanprof.
    WantempSystemSdwanDuplicationId string
    an identifier for the resource with format {{fosid}}.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Dstaddr string
    Destination address or address group names.
    Dstaddr6 string
    Destination address6 or address6 group names.
    Dstintf string
    Outgoing (egress) interfaces or zones.
    Fosid float64
    Duplication rule ID (1 - 255).
    PacketDeDuplication string
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    PacketDuplication string
    Configure packet duplication method. Valid values: disable, force, on-demand.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Service string
    Service and service group name.
    ServiceId string
    SD-WAN service rule ID list.
    SlaMatchService string
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    Srcaddr string
    Source address or address group names.
    Srcaddr6 string
    Source address6 or address6 group names.
    Srcintf string
    Incoming (ingress) interfaces or zones.
    Wanprof string
    Wanprof.
    WantempSystemSdwanDuplicationId string
    an identifier for the resource with format {{fosid}}.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dstaddr String
    Destination address or address group names.
    dstaddr6 String
    Destination address6 or address6 group names.
    dstintf String
    Outgoing (egress) interfaces or zones.
    fosid Double
    Duplication rule ID (1 - 255).
    packetDeDuplication String
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    packetDuplication String
    Configure packet duplication method. Valid values: disable, force, on-demand.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    service String
    Service and service group name.
    serviceId String
    SD-WAN service rule ID list.
    slaMatchService String
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    srcaddr String
    Source address or address group names.
    srcaddr6 String
    Source address6 or address6 group names.
    srcintf String
    Incoming (ingress) interfaces or zones.
    wanprof String
    Wanprof.
    wantempSystemSdwanDuplicationId String
    an identifier for the resource with format {{fosid}}.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dstaddr string
    Destination address or address group names.
    dstaddr6 string
    Destination address6 or address6 group names.
    dstintf string
    Outgoing (egress) interfaces or zones.
    fosid number
    Duplication rule ID (1 - 255).
    packetDeDuplication string
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    packetDuplication string
    Configure packet duplication method. Valid values: disable, force, on-demand.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    service string
    Service and service group name.
    serviceId string
    SD-WAN service rule ID list.
    slaMatchService string
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    srcaddr string
    Source address or address group names.
    srcaddr6 string
    Source address6 or address6 group names.
    srcintf string
    Incoming (ingress) interfaces or zones.
    wanprof string
    Wanprof.
    wantempSystemSdwanDuplicationId string
    an identifier for the resource with format {{fosid}}.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dstaddr str
    Destination address or address group names.
    dstaddr6 str
    Destination address6 or address6 group names.
    dstintf str
    Outgoing (egress) interfaces or zones.
    fosid float
    Duplication rule ID (1 - 255).
    packet_de_duplication str
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    packet_duplication str
    Configure packet duplication method. Valid values: disable, force, on-demand.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    service str
    Service and service group name.
    service_id str
    SD-WAN service rule ID list.
    sla_match_service str
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    srcaddr str
    Source address or address group names.
    srcaddr6 str
    Source address6 or address6 group names.
    srcintf str
    Incoming (ingress) interfaces or zones.
    wanprof str
    Wanprof.
    wantemp_system_sdwan_duplication_id str
    an identifier for the resource with format {{fosid}}.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dstaddr String
    Destination address or address group names.
    dstaddr6 String
    Destination address6 or address6 group names.
    dstintf String
    Outgoing (egress) interfaces or zones.
    fosid Number
    Duplication rule ID (1 - 255).
    packetDeDuplication String
    Enable/disable discarding of packets that have been duplicated. Valid values: disable, enable.
    packetDuplication String
    Configure packet duplication method. Valid values: disable, force, on-demand.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    service String
    Service and service group name.
    serviceId String
    SD-WAN service rule ID list.
    slaMatchService String
    Enable/disable packet duplication matching health-check SLAs in service rule. Valid values: disable, enable.
    srcaddr String
    Source address or address group names.
    srcaddr6 String
    Source address6 or address6 group names.
    srcintf String
    Incoming (ingress) interfaces or zones.
    wanprof String
    Wanprof.
    wantempSystemSdwanDuplicationId String
    an identifier for the resource with format {{fosid}}.

    Import

    Wantemp SystemSdwanDuplication can be imported using any of these accepted formats:

    Set import_options = [“wanprof=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/wantempSystemSdwanDuplication:WantempSystemSdwanDuplication 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev