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

fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6

Explore with Pulumi AI

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

    IPv6 VRRP configuration.

    This resource is a sub resource for variable vrrp6 of resource fortimanager.ObjectFspVlanInterfaceIpv6. 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 trnameObjectFspVlan = new fortimanager.ObjectFspVlan("trnameObjectFspVlan", {vlanid: 104});
    const trnameObjectFspVlanInterfaceIpv6Vrrp6 = new fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6("trnameObjectFspVlanInterfaceIpv6Vrrp6", {
        vlan: trnameObjectFspVlan.name,
        acceptMode: "enable",
        advInterval: 100,
        vrid: 3,
    }, {
        dependsOn: [trnameObjectFspVlan],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_fsp_vlan = fortimanager.ObjectFspVlan("trnameObjectFspVlan", vlanid=104)
    trname_object_fsp_vlan_interface_ipv6_vrrp6 = fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6("trnameObjectFspVlanInterfaceIpv6Vrrp6",
        vlan=trname_object_fsp_vlan.name,
        accept_mode="enable",
        adv_interval=100,
        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(104),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFspVlanInterfaceIpv6Vrrp6(ctx, "trnameObjectFspVlanInterfaceIpv6Vrrp6", &fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6Args{
    			Vlan:        trnameObjectFspVlan.Name,
    			AcceptMode:  pulumi.String("enable"),
    			AdvInterval: pulumi.Float64(100),
    			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 = 104,
        });
    
        var trnameObjectFspVlanInterfaceIpv6Vrrp6 = new Fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6("trnameObjectFspVlanInterfaceIpv6Vrrp6", new()
        {
            Vlan = trnameObjectFspVlan.Name,
            AcceptMode = "enable",
            AdvInterval = 100,
            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.ObjectFspVlanInterfaceIpv6Vrrp6;
    import com.pulumi.fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6Args;
    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(104)
                .build());
    
            var trnameObjectFspVlanInterfaceIpv6Vrrp6 = new ObjectFspVlanInterfaceIpv6Vrrp6("trnameObjectFspVlanInterfaceIpv6Vrrp6", ObjectFspVlanInterfaceIpv6Vrrp6Args.builder()
                .vlan(trnameObjectFspVlan.name())
                .acceptMode("enable")
                .advInterval(100)
                .vrid(3)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFspVlan)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectFspVlanInterfaceIpv6Vrrp6:
        type: fortimanager:ObjectFspVlanInterfaceIpv6Vrrp6
        properties:
          vlan: ${trnameObjectFspVlan.name}
          acceptMode: enable
          advInterval: 100
          vrid: 3
        options:
          dependsOn:
            - ${trnameObjectFspVlan}
      trnameObjectFspVlan:
        type: fortimanager:ObjectFspVlan
        properties:
          vlanid: 104
    

    Create ObjectFspVlanInterfaceIpv6Vrrp6 Resource

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

    Constructor syntax

    new ObjectFspVlanInterfaceIpv6Vrrp6(name: string, args: ObjectFspVlanInterfaceIpv6Vrrp6Args, opts?: CustomResourceOptions);
    @overload
    def ObjectFspVlanInterfaceIpv6Vrrp6(resource_name: str,
                                        args: ObjectFspVlanInterfaceIpv6Vrrp6InitArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFspVlanInterfaceIpv6Vrrp6(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        vlan: Optional[str] = None,
                                        priority: Optional[float] = None,
                                        start_time: Optional[float] = None,
                                        ignore_default_route: Optional[str] = None,
                                        object_fsp_vlan_interface_ipv6_vrrp6_id: Optional[str] = None,
                                        preempt: Optional[str] = None,
                                        accept_mode: Optional[str] = None,
                                        scopetype: Optional[str] = None,
                                        adv_interval: Optional[float] = None,
                                        status: Optional[str] = None,
                                        adom: Optional[str] = None,
                                        vrdst6: Optional[str] = None,
                                        vrgrp: Optional[float] = None,
                                        vrid: Optional[float] = None,
                                        vrip6: Optional[str] = None)
    func NewObjectFspVlanInterfaceIpv6Vrrp6(ctx *Context, name string, args ObjectFspVlanInterfaceIpv6Vrrp6Args, opts ...ResourceOption) (*ObjectFspVlanInterfaceIpv6Vrrp6, error)
    public ObjectFspVlanInterfaceIpv6Vrrp6(string name, ObjectFspVlanInterfaceIpv6Vrrp6Args args, CustomResourceOptions? opts = null)
    public ObjectFspVlanInterfaceIpv6Vrrp6(String name, ObjectFspVlanInterfaceIpv6Vrrp6Args args)
    public ObjectFspVlanInterfaceIpv6Vrrp6(String name, ObjectFspVlanInterfaceIpv6Vrrp6Args args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFspVlanInterfaceIpv6Vrrp6
    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 ObjectFspVlanInterfaceIpv6Vrrp6Args
    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 ObjectFspVlanInterfaceIpv6Vrrp6InitArgs
    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 ObjectFspVlanInterfaceIpv6Vrrp6Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFspVlanInterfaceIpv6Vrrp6Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFspVlanInterfaceIpv6Vrrp6Args
    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 objectFspVlanInterfaceIpv6Vrrp6Resource = new Fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6("objectFspVlanInterfaceIpv6Vrrp6Resource", new()
    {
        Vlan = "string",
        Priority = 0,
        StartTime = 0,
        IgnoreDefaultRoute = "string",
        ObjectFspVlanInterfaceIpv6Vrrp6Id = "string",
        Preempt = "string",
        AcceptMode = "string",
        Scopetype = "string",
        AdvInterval = 0,
        Status = "string",
        Adom = "string",
        Vrdst6 = "string",
        Vrgrp = 0,
        Vrid = 0,
        Vrip6 = "string",
    });
    
    example, err := fortimanager.NewObjectFspVlanInterfaceIpv6Vrrp6(ctx, "objectFspVlanInterfaceIpv6Vrrp6Resource", &fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6Args{
    Vlan: pulumi.String("string"),
    Priority: pulumi.Float64(0),
    StartTime: pulumi.Float64(0),
    IgnoreDefaultRoute: pulumi.String("string"),
    ObjectFspVlanInterfaceIpv6Vrrp6Id: pulumi.String("string"),
    Preempt: pulumi.String("string"),
    AcceptMode: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    AdvInterval: pulumi.Float64(0),
    Status: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Vrdst6: pulumi.String("string"),
    Vrgrp: pulumi.Float64(0),
    Vrid: pulumi.Float64(0),
    Vrip6: pulumi.String("string"),
    })
    
    var objectFspVlanInterfaceIpv6Vrrp6Resource = new ObjectFspVlanInterfaceIpv6Vrrp6("objectFspVlanInterfaceIpv6Vrrp6Resource", ObjectFspVlanInterfaceIpv6Vrrp6Args.builder()
        .vlan("string")
        .priority(0)
        .startTime(0)
        .ignoreDefaultRoute("string")
        .objectFspVlanInterfaceIpv6Vrrp6Id("string")
        .preempt("string")
        .acceptMode("string")
        .scopetype("string")
        .advInterval(0)
        .status("string")
        .adom("string")
        .vrdst6("string")
        .vrgrp(0)
        .vrid(0)
        .vrip6("string")
        .build());
    
    object_fsp_vlan_interface_ipv6_vrrp6_resource = fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6("objectFspVlanInterfaceIpv6Vrrp6Resource",
        vlan="string",
        priority=0,
        start_time=0,
        ignore_default_route="string",
        object_fsp_vlan_interface_ipv6_vrrp6_id="string",
        preempt="string",
        accept_mode="string",
        scopetype="string",
        adv_interval=0,
        status="string",
        adom="string",
        vrdst6="string",
        vrgrp=0,
        vrid=0,
        vrip6="string")
    
    const objectFspVlanInterfaceIpv6Vrrp6Resource = new fortimanager.ObjectFspVlanInterfaceIpv6Vrrp6("objectFspVlanInterfaceIpv6Vrrp6Resource", {
        vlan: "string",
        priority: 0,
        startTime: 0,
        ignoreDefaultRoute: "string",
        objectFspVlanInterfaceIpv6Vrrp6Id: "string",
        preempt: "string",
        acceptMode: "string",
        scopetype: "string",
        advInterval: 0,
        status: "string",
        adom: "string",
        vrdst6: "string",
        vrgrp: 0,
        vrid: 0,
        vrip6: "string",
    });
    
    type: fortimanager:ObjectFspVlanInterfaceIpv6Vrrp6
    properties:
        acceptMode: string
        adom: string
        advInterval: 0
        ignoreDefaultRoute: string
        objectFspVlanInterfaceIpv6Vrrp6Id: string
        preempt: string
        priority: 0
        scopetype: string
        startTime: 0
        status: string
        vlan: string
        vrdst6: string
        vrgrp: 0
        vrid: 0
        vrip6: string
    

    ObjectFspVlanInterfaceIpv6Vrrp6 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 ObjectFspVlanInterfaceIpv6Vrrp6 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).
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    ObjectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    Vrdst6 string
    Monitor the route to this destination.
    Vrgrp double
    VRRP group ID (1 - 65535).
    Vrid double
    Virtual router identifier (1 - 255).
    Vrip6 string
    IPv6 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).
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    ObjectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    Vrdst6 string
    Monitor the route to this destination.
    Vrgrp float64
    VRRP group ID (1 - 65535).
    Vrid float64
    Virtual router identifier (1 - 255).
    Vrip6 string
    IPv6 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).
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    vrdst6 String
    Monitor the route to this destination.
    vrgrp Double
    VRRP group ID (1 - 65535).
    vrid Double
    Virtual router identifier (1 - 255).
    vrip6 String
    IPv6 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).
    ignoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    vrdst6 string
    Monitor the route to this destination.
    vrgrp number
    VRRP group ID (1 - 65535).
    vrid number
    Virtual router identifier (1 - 255).
    vrip6 string
    IPv6 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).
    ignore_default_route str
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    object_fsp_vlan_interface_ipv6_vrrp6_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).
    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 VRRP. Valid values: disable, enable.
    vrdst6 str
    Monitor the route to this destination.
    vrgrp float
    VRRP group ID (1 - 65535).
    vrid float
    Virtual router identifier (1 - 255).
    vrip6 str
    IPv6 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).
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    vrdst6 String
    Monitor the route to this destination.
    vrgrp Number
    VRRP group ID (1 - 65535).
    vrid Number
    Virtual router identifier (1 - 255).
    vrip6 String
    IPv6 address of the virtual router.

    Outputs

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

    Get an existing ObjectFspVlanInterfaceIpv6Vrrp6 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?: ObjectFspVlanInterfaceIpv6Vrrp6State, opts?: CustomResourceOptions): ObjectFspVlanInterfaceIpv6Vrrp6
    @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,
            ignore_default_route: Optional[str] = None,
            object_fsp_vlan_interface_ipv6_vrrp6_id: Optional[str] = None,
            preempt: Optional[str] = None,
            priority: Optional[float] = None,
            scopetype: Optional[str] = None,
            start_time: Optional[float] = None,
            status: Optional[str] = None,
            vlan: Optional[str] = None,
            vrdst6: Optional[str] = None,
            vrgrp: Optional[float] = None,
            vrid: Optional[float] = None,
            vrip6: Optional[str] = None) -> ObjectFspVlanInterfaceIpv6Vrrp6
    func GetObjectFspVlanInterfaceIpv6Vrrp6(ctx *Context, name string, id IDInput, state *ObjectFspVlanInterfaceIpv6Vrrp6State, opts ...ResourceOption) (*ObjectFspVlanInterfaceIpv6Vrrp6, error)
    public static ObjectFspVlanInterfaceIpv6Vrrp6 Get(string name, Input<string> id, ObjectFspVlanInterfaceIpv6Vrrp6State? state, CustomResourceOptions? opts = null)
    public static ObjectFspVlanInterfaceIpv6Vrrp6 get(String name, Output<String> id, ObjectFspVlanInterfaceIpv6Vrrp6State state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFspVlanInterfaceIpv6Vrrp6    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).
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    ObjectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    Vlan string
    Vlan.
    Vrdst6 string
    Monitor the route to this destination.
    Vrgrp double
    VRRP group ID (1 - 65535).
    Vrid double
    Virtual router identifier (1 - 255).
    Vrip6 string
    IPv6 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).
    IgnoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    ObjectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    Vlan string
    Vlan.
    Vrdst6 string
    Monitor the route to this destination.
    Vrgrp float64
    VRRP group ID (1 - 65535).
    Vrid float64
    Virtual router identifier (1 - 255).
    Vrip6 string
    IPv6 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).
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    vlan String
    Vlan.
    vrdst6 String
    Monitor the route to this destination.
    vrgrp Double
    VRRP group ID (1 - 65535).
    vrid Double
    Virtual router identifier (1 - 255).
    vrip6 String
    IPv6 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).
    ignoreDefaultRoute string
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    vlan string
    Vlan.
    vrdst6 string
    Monitor the route to this destination.
    vrgrp number
    VRRP group ID (1 - 65535).
    vrid number
    Virtual router identifier (1 - 255).
    vrip6 string
    IPv6 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).
    ignore_default_route str
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    object_fsp_vlan_interface_ipv6_vrrp6_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).
    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 VRRP. Valid values: disable, enable.
    vlan str
    Vlan.
    vrdst6 str
    Monitor the route to this destination.
    vrgrp float
    VRRP group ID (1 - 65535).
    vrid float
    Virtual router identifier (1 - 255).
    vrip6 str
    IPv6 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).
    ignoreDefaultRoute String
    Enable/disable ignoring of default route when checking destination. Valid values: disable, enable.
    objectFspVlanInterfaceIpv6Vrrp6Id 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).
    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 VRRP. Valid values: disable, enable.
    vlan String
    Vlan.
    vrdst6 String
    Monitor the route to this destination.
    vrgrp Number
    VRRP group ID (1 - 65535).
    vrid Number
    Virtual router identifier (1 - 255).
    vrip6 String
    IPv6 address of the virtual router.

    Import

    ObjectFsp VlanInterfaceIpv6Vrrp6 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/objectFspVlanInterfaceIpv6Vrrp6:ObjectFspVlanInterfaceIpv6Vrrp6 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