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

fortimanager.ObjectFirewallVip6Realservers

Explore with Pulumi AI

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

    Select the real servers that this server load balancing VIP will distribute traffic to.

    This resource is a sub resource for variable realservers of resource fortimanager.ObjectFirewallVip6. 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 trnameObjectFirewallVip6 = new fortimanager.ObjectFirewallVip6("trnameObjectFirewallVip6", {
        extip: "2001:192:168:1::2",
        mappedips: ["2001:192:168:1::2"],
    });
    const trnameObjectFirewallVip6Realservers = new fortimanager.ObjectFirewallVip6Realservers("trnameObjectFirewallVip6Realservers", {
        vip6: trnameObjectFirewallVip6.name,
        fosid: 2,
        ip: "2001:192:168:1::3",
        port: 36,
    }, {
        dependsOn: [trnameObjectFirewallVip6],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_firewall_vip6 = fortimanager.ObjectFirewallVip6("trnameObjectFirewallVip6",
        extip="2001:192:168:1::2",
        mappedips=["2001:192:168:1::2"])
    trname_object_firewall_vip6_realservers = fortimanager.ObjectFirewallVip6Realservers("trnameObjectFirewallVip6Realservers",
        vip6=trname_object_firewall_vip6.name,
        fosid=2,
        ip="2001:192:168:1::3",
        port=36,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_vip6]))
    
    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 {
    		trnameObjectFirewallVip6, err := fortimanager.NewObjectFirewallVip6(ctx, "trnameObjectFirewallVip6", &fortimanager.ObjectFirewallVip6Args{
    			Extip: pulumi.String("2001:192:168:1::2"),
    			Mappedips: pulumi.StringArray{
    				pulumi.String("2001:192:168:1::2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFirewallVip6Realservers(ctx, "trnameObjectFirewallVip6Realservers", &fortimanager.ObjectFirewallVip6RealserversArgs{
    			Vip6:  trnameObjectFirewallVip6.Name,
    			Fosid: pulumi.Float64(2),
    			Ip:    pulumi.String("2001:192:168:1::3"),
    			Port:  pulumi.Float64(36),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectFirewallVip6,
    		}))
    		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 trnameObjectFirewallVip6 = new Fortimanager.ObjectFirewallVip6("trnameObjectFirewallVip6", new()
        {
            Extip = "2001:192:168:1::2",
            Mappedips = new[]
            {
                "2001:192:168:1::2",
            },
        });
    
        var trnameObjectFirewallVip6Realservers = new Fortimanager.ObjectFirewallVip6Realservers("trnameObjectFirewallVip6Realservers", new()
        {
            Vip6 = trnameObjectFirewallVip6.Name,
            Fosid = 2,
            Ip = "2001:192:168:1::3",
            Port = 36,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectFirewallVip6,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectFirewallVip6;
    import com.pulumi.fortimanager.ObjectFirewallVip6Args;
    import com.pulumi.fortimanager.ObjectFirewallVip6Realservers;
    import com.pulumi.fortimanager.ObjectFirewallVip6RealserversArgs;
    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 trnameObjectFirewallVip6 = new ObjectFirewallVip6("trnameObjectFirewallVip6", ObjectFirewallVip6Args.builder()
                .extip("2001:192:168:1::2")
                .mappedips("2001:192:168:1::2")
                .build());
    
            var trnameObjectFirewallVip6Realservers = new ObjectFirewallVip6Realservers("trnameObjectFirewallVip6Realservers", ObjectFirewallVip6RealserversArgs.builder()
                .vip6(trnameObjectFirewallVip6.name())
                .fosid(2)
                .ip("2001:192:168:1::3")
                .port(36)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFirewallVip6)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectFirewallVip6Realservers:
        type: fortimanager:ObjectFirewallVip6Realservers
        properties:
          vip6: ${trnameObjectFirewallVip6.name}
          fosid: 2
          ip: 2001:192:168:1::3
          port: 36
        options:
          dependsOn:
            - ${trnameObjectFirewallVip6}
      trnameObjectFirewallVip6:
        type: fortimanager:ObjectFirewallVip6
        properties:
          extip: 2001:192:168:1::2
          mappedips:
            - 2001:192:168:1::2
    

    Create ObjectFirewallVip6Realservers Resource

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

    Constructor syntax

    new ObjectFirewallVip6Realservers(name: string, args: ObjectFirewallVip6RealserversArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallVip6Realservers(resource_name: str,
                                      args: ObjectFirewallVip6RealserversArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallVip6Realservers(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      vip6: Optional[str] = None,
                                      monitor: Optional[str] = None,
                                      object_firewall_vip6_realservers_id: Optional[str] = None,
                                      healthcheck: Optional[str] = None,
                                      holddown_interval: Optional[float] = None,
                                      http_host: Optional[str] = None,
                                      ip: Optional[str] = None,
                                      fosid: Optional[float] = None,
                                      adom: Optional[str] = None,
                                      max_connections: Optional[float] = None,
                                      port: Optional[float] = None,
                                      scopetype: Optional[str] = None,
                                      status: Optional[str] = None,
                                      translate_host: Optional[str] = None,
                                      client_ip: Optional[str] = None,
                                      weight: Optional[float] = None)
    func NewObjectFirewallVip6Realservers(ctx *Context, name string, args ObjectFirewallVip6RealserversArgs, opts ...ResourceOption) (*ObjectFirewallVip6Realservers, error)
    public ObjectFirewallVip6Realservers(string name, ObjectFirewallVip6RealserversArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallVip6Realservers(String name, ObjectFirewallVip6RealserversArgs args)
    public ObjectFirewallVip6Realservers(String name, ObjectFirewallVip6RealserversArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallVip6Realservers
    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 ObjectFirewallVip6RealserversArgs
    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 ObjectFirewallVip6RealserversArgs
    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 ObjectFirewallVip6RealserversArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallVip6RealserversArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallVip6RealserversArgs
    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 objectFirewallVip6RealserversResource = new Fortimanager.ObjectFirewallVip6Realservers("objectFirewallVip6RealserversResource", new()
    {
        Vip6 = "string",
        Monitor = "string",
        ObjectFirewallVip6RealserversId = "string",
        Healthcheck = "string",
        HolddownInterval = 0,
        HttpHost = "string",
        Ip = "string",
        Fosid = 0,
        Adom = "string",
        MaxConnections = 0,
        Port = 0,
        Scopetype = "string",
        Status = "string",
        TranslateHost = "string",
        ClientIp = "string",
        Weight = 0,
    });
    
    example, err := fortimanager.NewObjectFirewallVip6Realservers(ctx, "objectFirewallVip6RealserversResource", &fortimanager.ObjectFirewallVip6RealserversArgs{
    Vip6: pulumi.String("string"),
    Monitor: pulumi.String("string"),
    ObjectFirewallVip6RealserversId: pulumi.String("string"),
    Healthcheck: pulumi.String("string"),
    HolddownInterval: pulumi.Float64(0),
    HttpHost: pulumi.String("string"),
    Ip: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    Adom: pulumi.String("string"),
    MaxConnections: pulumi.Float64(0),
    Port: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    TranslateHost: pulumi.String("string"),
    ClientIp: pulumi.String("string"),
    Weight: pulumi.Float64(0),
    })
    
    var objectFirewallVip6RealserversResource = new ObjectFirewallVip6Realservers("objectFirewallVip6RealserversResource", ObjectFirewallVip6RealserversArgs.builder()
        .vip6("string")
        .monitor("string")
        .objectFirewallVip6RealserversId("string")
        .healthcheck("string")
        .holddownInterval(0)
        .httpHost("string")
        .ip("string")
        .fosid(0)
        .adom("string")
        .maxConnections(0)
        .port(0)
        .scopetype("string")
        .status("string")
        .translateHost("string")
        .clientIp("string")
        .weight(0)
        .build());
    
    object_firewall_vip6_realservers_resource = fortimanager.ObjectFirewallVip6Realservers("objectFirewallVip6RealserversResource",
        vip6="string",
        monitor="string",
        object_firewall_vip6_realservers_id="string",
        healthcheck="string",
        holddown_interval=0,
        http_host="string",
        ip="string",
        fosid=0,
        adom="string",
        max_connections=0,
        port=0,
        scopetype="string",
        status="string",
        translate_host="string",
        client_ip="string",
        weight=0)
    
    const objectFirewallVip6RealserversResource = new fortimanager.ObjectFirewallVip6Realservers("objectFirewallVip6RealserversResource", {
        vip6: "string",
        monitor: "string",
        objectFirewallVip6RealserversId: "string",
        healthcheck: "string",
        holddownInterval: 0,
        httpHost: "string",
        ip: "string",
        fosid: 0,
        adom: "string",
        maxConnections: 0,
        port: 0,
        scopetype: "string",
        status: "string",
        translateHost: "string",
        clientIp: "string",
        weight: 0,
    });
    
    type: fortimanager:ObjectFirewallVip6Realservers
    properties:
        adom: string
        clientIp: string
        fosid: 0
        healthcheck: string
        holddownInterval: 0
        httpHost: string
        ip: string
        maxConnections: 0
        monitor: string
        objectFirewallVip6RealserversId: string
        port: 0
        scopetype: string
        status: string
        translateHost: string
        vip6: string
        weight: 0
    

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

    Vip6 string
    Vip6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ClientIp string
    Only clients in this IP range can connect to this real server.
    Fosid double
    Real server ID.
    Healthcheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    HolddownInterval double
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IPv6 address of the real server.
    MaxConnections double
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    Monitor string
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    ObjectFirewallVip6RealserversId string
    an identifier for the resource with format {{fosid}}.
    Port double
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    Weight double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    Vip6 string
    Vip6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ClientIp string
    Only clients in this IP range can connect to this real server.
    Fosid float64
    Real server ID.
    Healthcheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    HolddownInterval float64
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IPv6 address of the real server.
    MaxConnections float64
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    Monitor string
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    ObjectFirewallVip6RealserversId string
    an identifier for the resource with format {{fosid}}.
    Port float64
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    Weight float64
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    vip6 String
    Vip6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    clientIp String
    Only clients in this IP range can connect to this real server.
    fosid Double
    Real server ID.
    healthcheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    holddownInterval Double
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IPv6 address of the real server.
    maxConnections Double
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    monitor String
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    objectFirewallVip6RealserversId String
    an identifier for the resource with format {{fosid}}.
    port Double
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    weight Double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    vip6 string
    Vip6.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    clientIp string
    Only clients in this IP range can connect to this real server.
    fosid number
    Real server ID.
    healthcheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    holddownInterval number
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    httpHost string
    HTTP server domain name in HTTP header.
    ip string
    IPv6 address of the real server.
    maxConnections number
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    monitor string
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    objectFirewallVip6RealserversId string
    an identifier for the resource with format {{fosid}}.
    port number
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    weight number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    vip6 str
    Vip6.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    client_ip str
    Only clients in this IP range can connect to this real server.
    fosid float
    Real server ID.
    healthcheck str
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    holddown_interval float
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    http_host str
    HTTP server domain name in HTTP header.
    ip str
    IPv6 address of the real server.
    max_connections float
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    monitor str
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    object_firewall_vip6_realservers_id str
    an identifier for the resource with format {{fosid}}.
    port float
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    status str
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translate_host str
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    weight float
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    vip6 String
    Vip6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    clientIp String
    Only clients in this IP range can connect to this real server.
    fosid Number
    Real server ID.
    healthcheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    holddownInterval Number
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IPv6 address of the real server.
    maxConnections Number
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    monitor String
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    objectFirewallVip6RealserversId String
    an identifier for the resource with format {{fosid}}.
    port Number
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    weight Number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.

    Outputs

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

    Get an existing ObjectFirewallVip6Realservers 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?: ObjectFirewallVip6RealserversState, opts?: CustomResourceOptions): ObjectFirewallVip6Realservers
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            client_ip: Optional[str] = None,
            fosid: Optional[float] = None,
            healthcheck: Optional[str] = None,
            holddown_interval: Optional[float] = None,
            http_host: Optional[str] = None,
            ip: Optional[str] = None,
            max_connections: Optional[float] = None,
            monitor: Optional[str] = None,
            object_firewall_vip6_realservers_id: Optional[str] = None,
            port: Optional[float] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None,
            translate_host: Optional[str] = None,
            vip6: Optional[str] = None,
            weight: Optional[float] = None) -> ObjectFirewallVip6Realservers
    func GetObjectFirewallVip6Realservers(ctx *Context, name string, id IDInput, state *ObjectFirewallVip6RealserversState, opts ...ResourceOption) (*ObjectFirewallVip6Realservers, error)
    public static ObjectFirewallVip6Realservers Get(string name, Input<string> id, ObjectFirewallVip6RealserversState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallVip6Realservers get(String name, Output<String> id, ObjectFirewallVip6RealserversState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallVip6Realservers    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.
    ClientIp string
    Only clients in this IP range can connect to this real server.
    Fosid double
    Real server ID.
    Healthcheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    HolddownInterval double
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IPv6 address of the real server.
    MaxConnections double
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    Monitor string
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    ObjectFirewallVip6RealserversId string
    an identifier for the resource with format {{fosid}}.
    Port double
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    Vip6 string
    Vip6.
    Weight double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ClientIp string
    Only clients in this IP range can connect to this real server.
    Fosid float64
    Real server ID.
    Healthcheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    HolddownInterval float64
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IPv6 address of the real server.
    MaxConnections float64
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    Monitor string
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    ObjectFirewallVip6RealserversId string
    an identifier for the resource with format {{fosid}}.
    Port float64
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    Vip6 string
    Vip6.
    Weight float64
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    clientIp String
    Only clients in this IP range can connect to this real server.
    fosid Double
    Real server ID.
    healthcheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    holddownInterval Double
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IPv6 address of the real server.
    maxConnections Double
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    monitor String
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    objectFirewallVip6RealserversId String
    an identifier for the resource with format {{fosid}}.
    port Double
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    vip6 String
    Vip6.
    weight Double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    clientIp string
    Only clients in this IP range can connect to this real server.
    fosid number
    Real server ID.
    healthcheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    holddownInterval number
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    httpHost string
    HTTP server domain name in HTTP header.
    ip string
    IPv6 address of the real server.
    maxConnections number
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    monitor string
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    objectFirewallVip6RealserversId string
    an identifier for the resource with format {{fosid}}.
    port number
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    vip6 string
    Vip6.
    weight number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    client_ip str
    Only clients in this IP range can connect to this real server.
    fosid float
    Real server ID.
    healthcheck str
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    holddown_interval float
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    http_host str
    HTTP server domain name in HTTP header.
    ip str
    IPv6 address of the real server.
    max_connections float
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    monitor str
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    object_firewall_vip6_realservers_id str
    an identifier for the resource with format {{fosid}}.
    port float
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    status str
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translate_host str
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    vip6 str
    Vip6.
    weight float
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    clientIp String
    Only clients in this IP range can connect to this real server.
    fosid Number
    Real server ID.
    healthcheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable, vip.
    holddownInterval Number
    Time in seconds that the health check monitor continues to monitor an unresponsive server that should be active.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IPv6 address of the real server.
    maxConnections Number
    Max number of active connections that can directed to the real server. When reached, sessions are sent to other real servers.
    monitor String
    Name of the health check monitor to use when polling to determine a virtual server's connectivity status.
    objectFirewallVip6RealserversId String
    an identifier for the resource with format {{fosid}}.
    port Number
    Port for communicating with the real server. Required if port forwarding is enabled.
    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.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    vip6 String
    Vip6.
    weight Number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.

    Import

    ObjectFirewall Vip6Realservers can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallVip6Realservers:ObjectFirewallVip6Realservers 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