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

fortimanager.ObjectFspVlanInterfaceVrrp

Explore with Pulumi AI

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

    VRRP configuration.

    This resource is a sub resource for variable vrrp of resource fortimanager.ObjectFspVlanInterface. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • proxy_arp: fortimanager.ObjectFspVlanInterfaceVrrpProxyarp

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectFspVlan = new fortimanager.ObjectFspVlan("trnameObjectFspVlan", {vlanid: 101});
    const trnameObjectFspVlanInterfaceVrrp = new fortimanager.ObjectFspVlanInterfaceVrrp("trnameObjectFspVlanInterfaceVrrp", {
        vlan: trnameObjectFspVlan.name,
        advInterval: 100,
        ignoreDefaultRoute: "disable",
        preempt: "enable",
        vrid: 3,
    }, {
        dependsOn: [trnameObjectFspVlan],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_fsp_vlan = fortimanager.ObjectFspVlan("trnameObjectFspVlan", vlanid=101)
    trname_object_fsp_vlan_interface_vrrp = fortimanager.ObjectFspVlanInterfaceVrrp("trnameObjectFspVlanInterfaceVrrp",
        vlan=trname_object_fsp_vlan.name,
        adv_interval=100,
        ignore_default_route="disable",
        preempt="enable",
        vrid=3,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_fsp_vlan]))
    
    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 {
    		trnameObjectFspVlan, err := fortimanager.NewObjectFspVlan(ctx, "trnameObjectFspVlan", &fortimanager.ObjectFspVlanArgs{
    			Vlanid: pulumi.Float64(101),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFspVlanInterfaceVrrp(ctx, "trnameObjectFspVlanInterfaceVrrp", &fortimanager.ObjectFspVlanInterfaceVrrpArgs{
    			Vlan:               trnameObjectFspVlan.Name,
    			AdvInterval:        pulumi.Float64(100),
    			IgnoreDefaultRoute: pulumi.String("disable"),
    			Preempt:            pulumi.String("enable"),
    			Vrid:               pulumi.Float64(3),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectFspVlan,
    		}))
    		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 trnameObjectFspVlan = new Fortimanager.ObjectFspVlan("trnameObjectFspVlan", new()
        {
            Vlanid = 101,
        });
    
        var trnameObjectFspVlanInterfaceVrrp = new Fortimanager.ObjectFspVlanInterfaceVrrp("trnameObjectFspVlanInterfaceVrrp", new()
        {
            Vlan = trnameObjectFspVlan.Name,
            AdvInterval = 100,
            IgnoreDefaultRoute = "disable",
            Preempt = "enable",
            Vrid = 3,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectFspVlan,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectFspVlan;
    import com.pulumi.fortimanager.ObjectFspVlanArgs;
    import com.pulumi.fortimanager.ObjectFspVlanInterfaceVrrp;
    import com.pulumi.fortimanager.ObjectFspVlanInterfaceVrrpArgs;
    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 trnameObjectFspVlan = new ObjectFspVlan("trnameObjectFspVlan", ObjectFspVlanArgs.builder()
                .vlanid(101)
                .build());
    
            var trnameObjectFspVlanInterfaceVrrp = new ObjectFspVlanInterfaceVrrp("trnameObjectFspVlanInterfaceVrrp", ObjectFspVlanInterfaceVrrpArgs.builder()
                .vlan(trnameObjectFspVlan.name())
                .advInterval(100)
                .ignoreDefaultRoute("disable")
                .preempt("enable")
                .vrid(3)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFspVlan)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectFspVlanInterfaceVrrp:
        type: fortimanager:ObjectFspVlanInterfaceVrrp
        properties:
          vlan: ${trnameObjectFspVlan.name}
          advInterval: 100
          ignoreDefaultRoute: disable
          preempt: enable
          vrid: 3
        options:
          dependsOn:
            - ${trnameObjectFspVlan}
      trnameObjectFspVlan:
        type: fortimanager:ObjectFspVlan
        properties:
          vlanid: 101
    

    Create ObjectFspVlanInterfaceVrrp Resource

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

    Constructor syntax

    new ObjectFspVlanInterfaceVrrp(name: string, args: ObjectFspVlanInterfaceVrrpArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFspVlanInterfaceVrrp(resource_name: str,
                                   args: ObjectFspVlanInterfaceVrrpInitArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFspVlanInterfaceVrrp(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   vlan: Optional[str] = None,
                                   proxy_arps: Optional[Sequence[ObjectFspVlanInterfaceVrrpProxyArpArgs]] = None,
                                   dynamic_sort_subtable: Optional[str] = None,
                                   start_time: Optional[float] = None,
                                   status: Optional[str] = None,
                                   object_fsp_vlan_interface_vrrp_id: Optional[str] = None,
                                   preempt: Optional[str] = None,
                                   priority: Optional[float] = None,
                                   accept_mode: Optional[str] = None,
                                   vrip: Optional[str] = None,
                                   adv_interval: Optional[float] = None,
                                   ignore_default_route: Optional[str] = None,
                                   version: Optional[str] = None,
                                   adom: Optional[str] = None,
                                   vrdst_priority: Optional[float] = None,
                                   vrdsts: Optional[Sequence[str]] = None,
                                   vrgrp: Optional[float] = None,
                                   vrid: Optional[float] = None,
                                   scopetype: Optional[str] = None)
    func NewObjectFspVlanInterfaceVrrp(ctx *Context, name string, args ObjectFspVlanInterfaceVrrpArgs, opts ...ResourceOption) (*ObjectFspVlanInterfaceVrrp, error)
    public ObjectFspVlanInterfaceVrrp(string name, ObjectFspVlanInterfaceVrrpArgs args, CustomResourceOptions? opts = null)
    public ObjectFspVlanInterfaceVrrp(String name, ObjectFspVlanInterfaceVrrpArgs args)
    public ObjectFspVlanInterfaceVrrp(String name, ObjectFspVlanInterfaceVrrpArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFspVlanInterfaceVrrp
    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 ObjectFspVlanInterfaceVrrpArgs
    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 ObjectFspVlanInterfaceVrrpInitArgs
    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 ObjectFspVlanInterfaceVrrpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFspVlanInterfaceVrrpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFspVlanInterfaceVrrpArgs
    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 objectFspVlanInterfaceVrrpResource = new Fortimanager.ObjectFspVlanInterfaceVrrp("objectFspVlanInterfaceVrrpResource", new()
    {
        Vlan = "string",
        ProxyArps = new[]
        {
            new Fortimanager.Inputs.ObjectFspVlanInterfaceVrrpProxyArpArgs
            {
                Id = 0,
                Ip = "string",
            },
        },
        DynamicSortSubtable = "string",
        StartTime = 0,
        Status = "string",
        ObjectFspVlanInterfaceVrrpId = "string",
        Preempt = "string",
        Priority = 0,
        AcceptMode = "string",
        Vrip = "string",
        AdvInterval = 0,
        IgnoreDefaultRoute = "string",
        Version = "string",
        Adom = "string",
        VrdstPriority = 0,
        Vrdsts = new[]
        {
            "string",
        },
        Vrgrp = 0,
        Vrid = 0,
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectFspVlanInterfaceVrrp(ctx, "objectFspVlanInterfaceVrrpResource", &fortimanager.ObjectFspVlanInterfaceVrrpArgs{
    Vlan: pulumi.String("string"),
    ProxyArps: .ObjectFspVlanInterfaceVrrpProxyArpTypeArray{
    &.ObjectFspVlanInterfaceVrrpProxyArpTypeArgs{
    Id: pulumi.Float64(0),
    Ip: pulumi.String("string"),
    },
    },
    DynamicSortSubtable: pulumi.String("string"),
    StartTime: pulumi.Float64(0),
    Status: pulumi.String("string"),
    ObjectFspVlanInterfaceVrrpId: pulumi.String("string"),
    Preempt: pulumi.String("string"),
    Priority: pulumi.Float64(0),
    AcceptMode: pulumi.String("string"),
    Vrip: pulumi.String("string"),
    AdvInterval: pulumi.Float64(0),
    IgnoreDefaultRoute: pulumi.String("string"),
    Version: pulumi.String("string"),
    Adom: pulumi.String("string"),
    VrdstPriority: pulumi.Float64(0),
    Vrdsts: pulumi.StringArray{
    pulumi.String("string"),
    },
    Vrgrp: pulumi.Float64(0),
    Vrid: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    })
    
    var objectFspVlanInterfaceVrrpResource = new ObjectFspVlanInterfaceVrrp("objectFspVlanInterfaceVrrpResource", ObjectFspVlanInterfaceVrrpArgs.builder()
        .vlan("string")
        .proxyArps(ObjectFspVlanInterfaceVrrpProxyArpArgs.builder()
            .id(0)
            .ip("string")
            .build())
        .dynamicSortSubtable("string")
        .startTime(0)
        .status("string")
        .objectFspVlanInterfaceVrrpId("string")
        .preempt("string")
        .priority(0)
        .acceptMode("string")
        .vrip("string")
        .advInterval(0)
        .ignoreDefaultRoute("string")
        .version("string")
        .adom("string")
        .vrdstPriority(0)
        .vrdsts("string")
        .vrgrp(0)
        .vrid(0)
        .scopetype("string")
        .build());
    
    object_fsp_vlan_interface_vrrp_resource = fortimanager.ObjectFspVlanInterfaceVrrp("objectFspVlanInterfaceVrrpResource",
        vlan="string",
        proxy_arps=[{
            "id": 0,
            "ip": "string",
        }],
        dynamic_sort_subtable="string",
        start_time=0,
        status="string",
        object_fsp_vlan_interface_vrrp_id="string",
        preempt="string",
        priority=0,
        accept_mode="string",
        vrip="string",
        adv_interval=0,
        ignore_default_route="string",
        version="string",
        adom="string",
        vrdst_priority=0,
        vrdsts=["string"],
        vrgrp=0,
        vrid=0,
        scopetype="string")
    
    const objectFspVlanInterfaceVrrpResource = new fortimanager.ObjectFspVlanInterfaceVrrp("objectFspVlanInterfaceVrrpResource", {
        vlan: "string",
        proxyArps: [{
            id: 0,
            ip: "string",
        }],
        dynamicSortSubtable: "string",
        startTime: 0,
        status: "string",
        objectFspVlanInterfaceVrrpId: "string",
        preempt: "string",
        priority: 0,
        acceptMode: "string",
        vrip: "string",
        advInterval: 0,
        ignoreDefaultRoute: "string",
        version: "string",
        adom: "string",
        vrdstPriority: 0,
        vrdsts: ["string"],
        vrgrp: 0,
        vrid: 0,
        scopetype: "string",
    });
    
    type: fortimanager:ObjectFspVlanInterfaceVrrp
    properties:
        acceptMode: string
        adom: string
        advInterval: 0
        dynamicSortSubtable: string
        ignoreDefaultRoute: string
        objectFspVlanInterfaceVrrpId: string
        preempt: string
        priority: 0
        proxyArps:
            - id: 0
              ip: string
        scopetype: string
        startTime: 0
        status: string
        version: string
        vlan: string
        vrdstPriority: 0
        vrdsts:
            - string
        vrgrp: 0
        vrid: 0
        vrip: string
    

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

    Vlan string
    Vlan.
    AcceptMode string
    Enable/disable accept mode. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AdvInterval double
    Advertisement interval (1 - 255 seconds).
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    ObjectFspVlanInterfaceVrrpId string
    an identifier for the resource with format {{vrid}}.
    Preempt string
    Enable/disable preempt mode. Valid values: disable, enable.
    Priority double
    Priority of the virtual router (1 - 255).
    ProxyArps List<ObjectFspVlanInterfaceVrrpProxyArp>
    Proxy-Arp. The structure of proxy_arp block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartTime double
    Startup time (1 - 255 seconds).
    Status string
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    Version string
    VRRP version. Valid values: 2, 3.
    VrdstPriority double
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    Vrdsts List<string>
    Monitor the route to this destination.
    Vrgrp double
    VRRP group ID (1 - 65535).
    Vrid double
    Virtual router identifier (1 - 255).
    Vrip string
    IP address of the virtual router.
    Vlan string
    Vlan.
    AcceptMode string
    Enable/disable accept mode. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AdvInterval float64
    Advertisement interval (1 - 255 seconds).
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    ObjectFspVlanInterfaceVrrpId string
    an identifier for the resource with format {{vrid}}.
    Preempt string
    Enable/disable preempt mode. Valid values: disable, enable.
    Priority float64
    Priority of the virtual router (1 - 255).
    ProxyArps []ObjectFspVlanInterfaceVrrpProxyArpTypeArgs
    Proxy-Arp. The structure of proxy_arp block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartTime float64
    Startup time (1 - 255 seconds).
    Status string
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    Version string
    VRRP version. Valid values: 2, 3.
    VrdstPriority float64
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    Vrdsts []string
    Monitor the route to this destination.
    Vrgrp float64
    VRRP group ID (1 - 65535).
    Vrid float64
    Virtual router identifier (1 - 255).
    Vrip string
    IP address of the virtual router.
    vlan String
    Vlan.
    acceptMode String
    Enable/disable accept mode. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    advInterval Double
    Advertisement interval (1 - 255 seconds).
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceVrrpId String
    an identifier for the resource with format {{vrid}}.
    preempt String
    Enable/disable preempt mode. Valid values: disable, enable.
    priority Double
    Priority of the virtual router (1 - 255).
    proxyArps List<ObjectFspVlanInterfaceVrrpProxyArp>
    Proxy-Arp. The structure of proxy_arp block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startTime Double
    Startup time (1 - 255 seconds).
    status String
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    version String
    VRRP version. Valid values: 2, 3.
    vrdstPriority Double
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    vrdsts List<String>
    Monitor the route to this destination.
    vrgrp Double
    VRRP group ID (1 - 65535).
    vrid Double
    Virtual router identifier (1 - 255).
    vrip String
    IP address of the virtual router.
    vlan string
    Vlan.
    acceptMode string
    Enable/disable accept mode. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    advInterval number
    Advertisement interval (1 - 255 seconds).
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ignoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceVrrpId string
    an identifier for the resource with format {{vrid}}.
    preempt string
    Enable/disable preempt mode. Valid values: disable, enable.
    priority number
    Priority of the virtual router (1 - 255).
    proxyArps ObjectFspVlanInterfaceVrrpProxyArp[]
    Proxy-Arp. The structure of proxy_arp block is documented below.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startTime number
    Startup time (1 - 255 seconds).
    status string
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    version string
    VRRP version. Valid values: 2, 3.
    vrdstPriority number
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    vrdsts string[]
    Monitor the route to this destination.
    vrgrp number
    VRRP group ID (1 - 65535).
    vrid number
    Virtual router identifier (1 - 255).
    vrip string
    IP address of the virtual router.
    vlan str
    Vlan.
    accept_mode str
    Enable/disable accept mode. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    adv_interval float
    Advertisement interval (1 - 255 seconds).
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ignore_default_route str
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    object_fsp_vlan_interface_vrrp_id str
    an identifier for the resource with format {{vrid}}.
    preempt str
    Enable/disable preempt mode. Valid values: disable, enable.
    priority float
    Priority of the virtual router (1 - 255).
    proxy_arps Sequence[ObjectFspVlanInterfaceVrrpProxyArpArgs]
    Proxy-Arp. The structure of proxy_arp block is documented below.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    start_time float
    Startup time (1 - 255 seconds).
    status str
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    version str
    VRRP version. Valid values: 2, 3.
    vrdst_priority float
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    vrdsts Sequence[str]
    Monitor the route to this destination.
    vrgrp float
    VRRP group ID (1 - 65535).
    vrid float
    Virtual router identifier (1 - 255).
    vrip str
    IP address of the virtual router.
    vlan String
    Vlan.
    acceptMode String
    Enable/disable accept mode. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    advInterval Number
    Advertisement interval (1 - 255 seconds).
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceVrrpId String
    an identifier for the resource with format {{vrid}}.
    preempt String
    Enable/disable preempt mode. Valid values: disable, enable.
    priority Number
    Priority of the virtual router (1 - 255).
    proxyArps List<Property Map>
    Proxy-Arp. The structure of proxy_arp block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startTime Number
    Startup time (1 - 255 seconds).
    status String
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    version String
    VRRP version. Valid values: 2, 3.
    vrdstPriority Number
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    vrdsts List<String>
    Monitor the route to this destination.
    vrgrp Number
    VRRP group ID (1 - 65535).
    vrid Number
    Virtual router identifier (1 - 255).
    vrip String
    IP address of the virtual router.

    Outputs

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

    Get an existing ObjectFspVlanInterfaceVrrp 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?: ObjectFspVlanInterfaceVrrpState, opts?: CustomResourceOptions): ObjectFspVlanInterfaceVrrp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accept_mode: Optional[str] = None,
            adom: Optional[str] = None,
            adv_interval: Optional[float] = None,
            dynamic_sort_subtable: Optional[str] = None,
            ignore_default_route: Optional[str] = None,
            object_fsp_vlan_interface_vrrp_id: Optional[str] = None,
            preempt: Optional[str] = None,
            priority: Optional[float] = None,
            proxy_arps: Optional[Sequence[ObjectFspVlanInterfaceVrrpProxyArpArgs]] = None,
            scopetype: Optional[str] = None,
            start_time: Optional[float] = None,
            status: Optional[str] = None,
            version: Optional[str] = None,
            vlan: Optional[str] = None,
            vrdst_priority: Optional[float] = None,
            vrdsts: Optional[Sequence[str]] = None,
            vrgrp: Optional[float] = None,
            vrid: Optional[float] = None,
            vrip: Optional[str] = None) -> ObjectFspVlanInterfaceVrrp
    func GetObjectFspVlanInterfaceVrrp(ctx *Context, name string, id IDInput, state *ObjectFspVlanInterfaceVrrpState, opts ...ResourceOption) (*ObjectFspVlanInterfaceVrrp, error)
    public static ObjectFspVlanInterfaceVrrp Get(string name, Input<string> id, ObjectFspVlanInterfaceVrrpState? state, CustomResourceOptions? opts = null)
    public static ObjectFspVlanInterfaceVrrp get(String name, Output<String> id, ObjectFspVlanInterfaceVrrpState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFspVlanInterfaceVrrp    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:
    AcceptMode string
    Enable/disable accept mode. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AdvInterval double
    Advertisement interval (1 - 255 seconds).
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    ObjectFspVlanInterfaceVrrpId string
    an identifier for the resource with format {{vrid}}.
    Preempt string
    Enable/disable preempt mode. Valid values: disable, enable.
    Priority double
    Priority of the virtual router (1 - 255).
    ProxyArps List<ObjectFspVlanInterfaceVrrpProxyArp>
    Proxy-Arp. The structure of proxy_arp block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartTime double
    Startup time (1 - 255 seconds).
    Status string
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    Version string
    VRRP version. Valid values: 2, 3.
    Vlan string
    Vlan.
    VrdstPriority double
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    Vrdsts List<string>
    Monitor the route to this destination.
    Vrgrp double
    VRRP group ID (1 - 65535).
    Vrid double
    Virtual router identifier (1 - 255).
    Vrip string
    IP address of the virtual router.
    AcceptMode string
    Enable/disable accept mode. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AdvInterval float64
    Advertisement interval (1 - 255 seconds).
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    ObjectFspVlanInterfaceVrrpId string
    an identifier for the resource with format {{vrid}}.
    Preempt string
    Enable/disable preempt mode. Valid values: disable, enable.
    Priority float64
    Priority of the virtual router (1 - 255).
    ProxyArps []ObjectFspVlanInterfaceVrrpProxyArpTypeArgs
    Proxy-Arp. The structure of proxy_arp block is documented below.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartTime float64
    Startup time (1 - 255 seconds).
    Status string
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    Version string
    VRRP version. Valid values: 2, 3.
    Vlan string
    Vlan.
    VrdstPriority float64
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    Vrdsts []string
    Monitor the route to this destination.
    Vrgrp float64
    VRRP group ID (1 - 65535).
    Vrid float64
    Virtual router identifier (1 - 255).
    Vrip string
    IP address of the virtual router.
    acceptMode String
    Enable/disable accept mode. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    advInterval Double
    Advertisement interval (1 - 255 seconds).
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceVrrpId String
    an identifier for the resource with format {{vrid}}.
    preempt String
    Enable/disable preempt mode. Valid values: disable, enable.
    priority Double
    Priority of the virtual router (1 - 255).
    proxyArps List<ObjectFspVlanInterfaceVrrpProxyArp>
    Proxy-Arp. The structure of proxy_arp block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startTime Double
    Startup time (1 - 255 seconds).
    status String
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    version String
    VRRP version. Valid values: 2, 3.
    vlan String
    Vlan.
    vrdstPriority Double
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    vrdsts List<String>
    Monitor the route to this destination.
    vrgrp Double
    VRRP group ID (1 - 65535).
    vrid Double
    Virtual router identifier (1 - 255).
    vrip String
    IP address of the virtual router.
    acceptMode string
    Enable/disable accept mode. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    advInterval number
    Advertisement interval (1 - 255 seconds).
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ignoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceVrrpId string
    an identifier for the resource with format {{vrid}}.
    preempt string
    Enable/disable preempt mode. Valid values: disable, enable.
    priority number
    Priority of the virtual router (1 - 255).
    proxyArps ObjectFspVlanInterfaceVrrpProxyArp[]
    Proxy-Arp. The structure of proxy_arp block is documented below.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startTime number
    Startup time (1 - 255 seconds).
    status string
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    version string
    VRRP version. Valid values: 2, 3.
    vlan string
    Vlan.
    vrdstPriority number
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    vrdsts string[]
    Monitor the route to this destination.
    vrgrp number
    VRRP group ID (1 - 65535).
    vrid number
    Virtual router identifier (1 - 255).
    vrip string
    IP address of the virtual router.
    accept_mode str
    Enable/disable accept mode. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    adv_interval float
    Advertisement interval (1 - 255 seconds).
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ignore_default_route str
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    object_fsp_vlan_interface_vrrp_id str
    an identifier for the resource with format {{vrid}}.
    preempt str
    Enable/disable preempt mode. Valid values: disable, enable.
    priority float
    Priority of the virtual router (1 - 255).
    proxy_arps Sequence[ObjectFspVlanInterfaceVrrpProxyArpArgs]
    Proxy-Arp. The structure of proxy_arp block is documented below.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    start_time float
    Startup time (1 - 255 seconds).
    status str
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    version str
    VRRP version. Valid values: 2, 3.
    vlan str
    Vlan.
    vrdst_priority float
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    vrdsts Sequence[str]
    Monitor the route to this destination.
    vrgrp float
    VRRP group ID (1 - 65535).
    vrid float
    Virtual router identifier (1 - 255).
    vrip str
    IP address of the virtual router.
    acceptMode String
    Enable/disable accept mode. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    advInterval Number
    Advertisement interval (1 - 255 seconds).
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceVrrpId String
    an identifier for the resource with format {{vrid}}.
    preempt String
    Enable/disable preempt mode. Valid values: disable, enable.
    priority Number
    Priority of the virtual router (1 - 255).
    proxyArps List<Property Map>
    Proxy-Arp. The structure of proxy_arp block is documented below.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startTime Number
    Startup time (1 - 255 seconds).
    status String
    Enable/disable this VRRP configuration. Valid values: disable, enable.
    version String
    VRRP version. Valid values: 2, 3.
    vlan String
    Vlan.
    vrdstPriority Number
    Priority of the virtual router when the virtual router destination becomes unreachable (0 - 254).
    vrdsts List<String>
    Monitor the route to this destination.
    vrgrp Number
    VRRP group ID (1 - 65535).
    vrid Number
    Virtual router identifier (1 - 255).
    vrip String
    IP address of the virtual router.

    Supporting Types

    ObjectFspVlanInterfaceVrrpProxyArp, ObjectFspVlanInterfaceVrrpProxyArpArgs

    Id double
    ID.
    Ip string
    Set IP addresses of proxy ARP.
    Id float64
    ID.
    Ip string
    Set IP addresses of proxy ARP.
    id Double
    ID.
    ip String
    Set IP addresses of proxy ARP.
    id number
    ID.
    ip string
    Set IP addresses of proxy ARP.
    id float
    ID.
    ip str
    Set IP addresses of proxy ARP.
    id Number
    ID.
    ip String
    Set IP addresses of proxy ARP.

    Import

    ObjectFsp VlanInterfaceVrrp can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFspVlanInterfaceVrrp:ObjectFspVlanInterfaceVrrp labelname {{vrid}}
    

    $ 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