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

fortimanager.SystemHa

Explore with Pulumi AI

HA configuration.

The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

  • monitored_interfaces: fortimanager_system_ha_monitoredinterfaces
  • monitored_ips: fortimanager.SystemHaMonitoredips
  • peer: fortimanager.SystemHaPeer

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.SystemHa("trname", {
    clusterid: 2,
    fileQuota: 2048,
    mode: "standalone",
    passwords: ["fortinet"],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.SystemHa("trname",
    clusterid=2,
    file_quota=2048,
    mode="standalone",
    passwords=["fortinet"])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fortimanager.NewSystemHa(ctx, "trname", &fortimanager.SystemHaArgs{
			Clusterid: pulumi.Float64(2),
			FileQuota: pulumi.Float64(2048),
			Mode:      pulumi.String("standalone"),
			Passwords: pulumi.StringArray{
				pulumi.String("fortinet"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.SystemHa("trname", new()
    {
        Clusterid = 2,
        FileQuota = 2048,
        Mode = "standalone",
        Passwords = new[]
        {
            "fortinet",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemHa;
import com.pulumi.fortimanager.SystemHaArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var trname = new SystemHa("trname", SystemHaArgs.builder()
            .clusterid("2")
            .fileQuota("2048")
            .mode("standalone")
            .passwords("fortinet")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:SystemHa
    properties:
      clusterid: '2'
      fileQuota: '2048'
      mode: standalone
      passwords:
        - fortinet
Copy

Create SystemHa Resource

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

Constructor syntax

new SystemHa(name: string, args?: SystemHaArgs, opts?: CustomResourceOptions);
@overload
def SystemHa(resource_name: str,
             args: Optional[SystemHaArgs] = None,
             opts: Optional[ResourceOptions] = None)

@overload
def SystemHa(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             clusterid: Optional[float] = None,
             dynamic_sort_subtable: Optional[str] = None,
             failover_mode: Optional[str] = None,
             file_quota: Optional[float] = None,
             hb_interval: Optional[float] = None,
             hb_lost_threshold: Optional[float] = None,
             local_cert: Optional[str] = None,
             mode: Optional[str] = None,
             monitored_interfaces: Optional[Sequence[SystemHaMonitoredInterfaceArgs]] = None,
             monitored_ips: Optional[Sequence[SystemHaMonitoredIpArgs]] = None,
             passwords: Optional[Sequence[str]] = None,
             peers: Optional[Sequence[SystemHaPeerArgs]] = None,
             priority: Optional[float] = None,
             system_ha_id: Optional[str] = None,
             unicast: Optional[str] = None,
             vip: Optional[str] = None,
             vip_interface: Optional[str] = None,
             vrrp_adv_interval: Optional[float] = None,
             vrrp_interface: Optional[str] = None)
func NewSystemHa(ctx *Context, name string, args *SystemHaArgs, opts ...ResourceOption) (*SystemHa, error)
public SystemHa(string name, SystemHaArgs? args = null, CustomResourceOptions? opts = null)
public SystemHa(String name, SystemHaArgs args)
public SystemHa(String name, SystemHaArgs args, CustomResourceOptions options)
type: fortimanager:SystemHa
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args SystemHaArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args SystemHaArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args SystemHaArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args SystemHaArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SystemHaArgs
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 systemHaResource = new Fortimanager.SystemHa("systemHaResource", new()
{
    Clusterid = 0,
    DynamicSortSubtable = "string",
    FailoverMode = "string",
    FileQuota = 0,
    HbInterval = 0,
    HbLostThreshold = 0,
    LocalCert = "string",
    Mode = "string",
    MonitoredInterfaces = new[]
    {
        new Fortimanager.Inputs.SystemHaMonitoredInterfaceArgs
        {
            InterfaceName = "string",
        },
    },
    MonitoredIps = new[]
    {
        new Fortimanager.Inputs.SystemHaMonitoredIpArgs
        {
            Id = 0,
            Interface = "string",
            Ip = "string",
        },
    },
    Passwords = new[]
    {
        "string",
    },
    Peers = new[]
    {
        new Fortimanager.Inputs.SystemHaPeerArgs
        {
            Id = 0,
            Ip = "string",
            Ip6 = "string",
            SerialNumber = "string",
            Status = "string",
        },
    },
    Priority = 0,
    SystemHaId = "string",
    Unicast = "string",
    Vip = "string",
    VipInterface = "string",
    VrrpAdvInterval = 0,
    VrrpInterface = "string",
});
Copy
example, err := fortimanager.NewSystemHa(ctx, "systemHaResource", &fortimanager.SystemHaArgs{
Clusterid: pulumi.Float64(0),
DynamicSortSubtable: pulumi.String("string"),
FailoverMode: pulumi.String("string"),
FileQuota: pulumi.Float64(0),
HbInterval: pulumi.Float64(0),
HbLostThreshold: pulumi.Float64(0),
LocalCert: pulumi.String("string"),
Mode: pulumi.String("string"),
MonitoredInterfaces: .SystemHaMonitoredInterfaceArray{
&.SystemHaMonitoredInterfaceArgs{
InterfaceName: pulumi.String("string"),
},
},
MonitoredIps: .SystemHaMonitoredIpArray{
&.SystemHaMonitoredIpArgs{
Id: pulumi.Float64(0),
Interface: pulumi.String("string"),
Ip: pulumi.String("string"),
},
},
Passwords: pulumi.StringArray{
pulumi.String("string"),
},
Peers: .SystemHaPeerTypeArray{
&.SystemHaPeerTypeArgs{
Id: pulumi.Float64(0),
Ip: pulumi.String("string"),
Ip6: pulumi.String("string"),
SerialNumber: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
Priority: pulumi.Float64(0),
SystemHaId: pulumi.String("string"),
Unicast: pulumi.String("string"),
Vip: pulumi.String("string"),
VipInterface: pulumi.String("string"),
VrrpAdvInterval: pulumi.Float64(0),
VrrpInterface: pulumi.String("string"),
})
Copy
var systemHaResource = new SystemHa("systemHaResource", SystemHaArgs.builder()
    .clusterid(0)
    .dynamicSortSubtable("string")
    .failoverMode("string")
    .fileQuota(0)
    .hbInterval(0)
    .hbLostThreshold(0)
    .localCert("string")
    .mode("string")
    .monitoredInterfaces(SystemHaMonitoredInterfaceArgs.builder()
        .interfaceName("string")
        .build())
    .monitoredIps(SystemHaMonitoredIpArgs.builder()
        .id(0)
        .interface_("string")
        .ip("string")
        .build())
    .passwords("string")
    .peers(SystemHaPeerArgs.builder()
        .id(0)
        .ip("string")
        .ip6("string")
        .serialNumber("string")
        .status("string")
        .build())
    .priority(0)
    .systemHaId("string")
    .unicast("string")
    .vip("string")
    .vipInterface("string")
    .vrrpAdvInterval(0)
    .vrrpInterface("string")
    .build());
Copy
system_ha_resource = fortimanager.SystemHa("systemHaResource",
    clusterid=0,
    dynamic_sort_subtable="string",
    failover_mode="string",
    file_quota=0,
    hb_interval=0,
    hb_lost_threshold=0,
    local_cert="string",
    mode="string",
    monitored_interfaces=[{
        "interface_name": "string",
    }],
    monitored_ips=[{
        "id": 0,
        "interface": "string",
        "ip": "string",
    }],
    passwords=["string"],
    peers=[{
        "id": 0,
        "ip": "string",
        "ip6": "string",
        "serial_number": "string",
        "status": "string",
    }],
    priority=0,
    system_ha_id="string",
    unicast="string",
    vip="string",
    vip_interface="string",
    vrrp_adv_interval=0,
    vrrp_interface="string")
Copy
const systemHaResource = new fortimanager.SystemHa("systemHaResource", {
    clusterid: 0,
    dynamicSortSubtable: "string",
    failoverMode: "string",
    fileQuota: 0,
    hbInterval: 0,
    hbLostThreshold: 0,
    localCert: "string",
    mode: "string",
    monitoredInterfaces: [{
        interfaceName: "string",
    }],
    monitoredIps: [{
        id: 0,
        "interface": "string",
        ip: "string",
    }],
    passwords: ["string"],
    peers: [{
        id: 0,
        ip: "string",
        ip6: "string",
        serialNumber: "string",
        status: "string",
    }],
    priority: 0,
    systemHaId: "string",
    unicast: "string",
    vip: "string",
    vipInterface: "string",
    vrrpAdvInterval: 0,
    vrrpInterface: "string",
});
Copy
type: fortimanager:SystemHa
properties:
    clusterid: 0
    dynamicSortSubtable: string
    failoverMode: string
    fileQuota: 0
    hbInterval: 0
    hbLostThreshold: 0
    localCert: string
    mode: string
    monitoredInterfaces:
        - interfaceName: string
    monitoredIps:
        - id: 0
          interface: string
          ip: string
    passwords:
        - string
    peers:
        - id: 0
          ip: string
          ip6: string
          serialNumber: string
          status: string
    priority: 0
    systemHaId: string
    unicast: string
    vip: string
    vipInterface: string
    vrrpAdvInterval: 0
    vrrpInterface: string
Copy

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

Clusterid double
Cluster ID range (1 - 64).
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.
FailoverMode string
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
FileQuota double
File quota in MB (2048 - 20480).
HbInterval double
Heartbeat interval (1 - 255).
HbLostThreshold double
Heartbeat lost threshold (1 - 255).
LocalCert string
set the ha local certificate.
Mode string
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
MonitoredInterfaces List<SystemHaMonitoredInterface>
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
MonitoredIps List<SystemHaMonitoredIp>
Monitored-Ips. The structure of monitored_ips block is documented below.
Passwords List<string>
Group password.
Peers List<SystemHaPeer>
Peer. The structure of peer block is documented below.
Priority double
Runtime priority [1 (lowest) - 253 (highest)]
SystemHaId string
an identifier for the resource.
Unicast string
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
Vip string
Virtual IP.
VipInterface string
vip interface.
VrrpAdvInterval double
VRRP advert interval [1 - 30 seconnds]
VrrpInterface string
VRRP and vip interface.
Clusterid float64
Cluster ID range (1 - 64).
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.
FailoverMode string
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
FileQuota float64
File quota in MB (2048 - 20480).
HbInterval float64
Heartbeat interval (1 - 255).
HbLostThreshold float64
Heartbeat lost threshold (1 - 255).
LocalCert string
set the ha local certificate.
Mode string
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
MonitoredInterfaces []SystemHaMonitoredInterfaceArgs
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
MonitoredIps []SystemHaMonitoredIpArgs
Monitored-Ips. The structure of monitored_ips block is documented below.
Passwords []string
Group password.
Peers []SystemHaPeerTypeArgs
Peer. The structure of peer block is documented below.
Priority float64
Runtime priority [1 (lowest) - 253 (highest)]
SystemHaId string
an identifier for the resource.
Unicast string
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
Vip string
Virtual IP.
VipInterface string
vip interface.
VrrpAdvInterval float64
VRRP advert interval [1 - 30 seconnds]
VrrpInterface string
VRRP and vip interface.
clusterid Double
Cluster ID range (1 - 64).
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.
failoverMode String
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
fileQuota Double
File quota in MB (2048 - 20480).
hbInterval Double
Heartbeat interval (1 - 255).
hbLostThreshold Double
Heartbeat lost threshold (1 - 255).
localCert String
set the ha local certificate.
mode String
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
monitoredInterfaces List<SystemHaMonitoredInterface>
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
monitoredIps List<SystemHaMonitoredIp>
Monitored-Ips. The structure of monitored_ips block is documented below.
passwords List<String>
Group password.
peers List<SystemHaPeer>
Peer. The structure of peer block is documented below.
priority Double
Runtime priority [1 (lowest) - 253 (highest)]
systemHaId String
an identifier for the resource.
unicast String
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
vip String
Virtual IP.
vipInterface String
vip interface.
vrrpAdvInterval Double
VRRP advert interval [1 - 30 seconnds]
vrrpInterface String
VRRP and vip interface.
clusterid number
Cluster ID range (1 - 64).
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.
failoverMode string
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
fileQuota number
File quota in MB (2048 - 20480).
hbInterval number
Heartbeat interval (1 - 255).
hbLostThreshold number
Heartbeat lost threshold (1 - 255).
localCert string
set the ha local certificate.
mode string
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
monitoredInterfaces SystemHaMonitoredInterface[]
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
monitoredIps SystemHaMonitoredIp[]
Monitored-Ips. The structure of monitored_ips block is documented below.
passwords string[]
Group password.
peers SystemHaPeer[]
Peer. The structure of peer block is documented below.
priority number
Runtime priority [1 (lowest) - 253 (highest)]
systemHaId string
an identifier for the resource.
unicast string
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
vip string
Virtual IP.
vipInterface string
vip interface.
vrrpAdvInterval number
VRRP advert interval [1 - 30 seconnds]
vrrpInterface string
VRRP and vip interface.
clusterid float
Cluster ID range (1 - 64).
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.
failover_mode str
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
file_quota float
File quota in MB (2048 - 20480).
hb_interval float
Heartbeat interval (1 - 255).
hb_lost_threshold float
Heartbeat lost threshold (1 - 255).
local_cert str
set the ha local certificate.
mode str
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
monitored_interfaces Sequence[SystemHaMonitoredInterfaceArgs]
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
monitored_ips Sequence[SystemHaMonitoredIpArgs]
Monitored-Ips. The structure of monitored_ips block is documented below.
passwords Sequence[str]
Group password.
peers Sequence[SystemHaPeerArgs]
Peer. The structure of peer block is documented below.
priority float
Runtime priority [1 (lowest) - 253 (highest)]
system_ha_id str
an identifier for the resource.
unicast str
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
vip str
Virtual IP.
vip_interface str
vip interface.
vrrp_adv_interval float
VRRP advert interval [1 - 30 seconnds]
vrrp_interface str
VRRP and vip interface.
clusterid Number
Cluster ID range (1 - 64).
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.
failoverMode String
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
fileQuota Number
File quota in MB (2048 - 20480).
hbInterval Number
Heartbeat interval (1 - 255).
hbLostThreshold Number
Heartbeat lost threshold (1 - 255).
localCert String
set the ha local certificate.
mode String
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
monitoredInterfaces List<Property Map>
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
monitoredIps List<Property Map>
Monitored-Ips. The structure of monitored_ips block is documented below.
passwords List<String>
Group password.
peers List<Property Map>
Peer. The structure of peer block is documented below.
priority Number
Runtime priority [1 (lowest) - 253 (highest)]
systemHaId String
an identifier for the resource.
unicast String
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
vip String
Virtual IP.
vipInterface String
vip interface.
vrrpAdvInterval Number
VRRP advert interval [1 - 30 seconnds]
vrrpInterface String
VRRP and vip interface.

Outputs

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

Get an existing SystemHa 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?: SystemHaState, opts?: CustomResourceOptions): SystemHa
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        clusterid: Optional[float] = None,
        dynamic_sort_subtable: Optional[str] = None,
        failover_mode: Optional[str] = None,
        file_quota: Optional[float] = None,
        hb_interval: Optional[float] = None,
        hb_lost_threshold: Optional[float] = None,
        local_cert: Optional[str] = None,
        mode: Optional[str] = None,
        monitored_interfaces: Optional[Sequence[SystemHaMonitoredInterfaceArgs]] = None,
        monitored_ips: Optional[Sequence[SystemHaMonitoredIpArgs]] = None,
        passwords: Optional[Sequence[str]] = None,
        peers: Optional[Sequence[SystemHaPeerArgs]] = None,
        priority: Optional[float] = None,
        system_ha_id: Optional[str] = None,
        unicast: Optional[str] = None,
        vip: Optional[str] = None,
        vip_interface: Optional[str] = None,
        vrrp_adv_interval: Optional[float] = None,
        vrrp_interface: Optional[str] = None) -> SystemHa
func GetSystemHa(ctx *Context, name string, id IDInput, state *SystemHaState, opts ...ResourceOption) (*SystemHa, error)
public static SystemHa Get(string name, Input<string> id, SystemHaState? state, CustomResourceOptions? opts = null)
public static SystemHa get(String name, Output<String> id, SystemHaState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:SystemHa    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Clusterid double
Cluster ID range (1 - 64).
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.
FailoverMode string
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
FileQuota double
File quota in MB (2048 - 20480).
HbInterval double
Heartbeat interval (1 - 255).
HbLostThreshold double
Heartbeat lost threshold (1 - 255).
LocalCert string
set the ha local certificate.
Mode string
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
MonitoredInterfaces List<SystemHaMonitoredInterface>
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
MonitoredIps List<SystemHaMonitoredIp>
Monitored-Ips. The structure of monitored_ips block is documented below.
Passwords List<string>
Group password.
Peers List<SystemHaPeer>
Peer. The structure of peer block is documented below.
Priority double
Runtime priority [1 (lowest) - 253 (highest)]
SystemHaId string
an identifier for the resource.
Unicast string
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
Vip string
Virtual IP.
VipInterface string
vip interface.
VrrpAdvInterval double
VRRP advert interval [1 - 30 seconnds]
VrrpInterface string
VRRP and vip interface.
Clusterid float64
Cluster ID range (1 - 64).
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.
FailoverMode string
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
FileQuota float64
File quota in MB (2048 - 20480).
HbInterval float64
Heartbeat interval (1 - 255).
HbLostThreshold float64
Heartbeat lost threshold (1 - 255).
LocalCert string
set the ha local certificate.
Mode string
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
MonitoredInterfaces []SystemHaMonitoredInterfaceArgs
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
MonitoredIps []SystemHaMonitoredIpArgs
Monitored-Ips. The structure of monitored_ips block is documented below.
Passwords []string
Group password.
Peers []SystemHaPeerTypeArgs
Peer. The structure of peer block is documented below.
Priority float64
Runtime priority [1 (lowest) - 253 (highest)]
SystemHaId string
an identifier for the resource.
Unicast string
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
Vip string
Virtual IP.
VipInterface string
vip interface.
VrrpAdvInterval float64
VRRP advert interval [1 - 30 seconnds]
VrrpInterface string
VRRP and vip interface.
clusterid Double
Cluster ID range (1 - 64).
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.
failoverMode String
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
fileQuota Double
File quota in MB (2048 - 20480).
hbInterval Double
Heartbeat interval (1 - 255).
hbLostThreshold Double
Heartbeat lost threshold (1 - 255).
localCert String
set the ha local certificate.
mode String
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
monitoredInterfaces List<SystemHaMonitoredInterface>
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
monitoredIps List<SystemHaMonitoredIp>
Monitored-Ips. The structure of monitored_ips block is documented below.
passwords List<String>
Group password.
peers List<SystemHaPeer>
Peer. The structure of peer block is documented below.
priority Double
Runtime priority [1 (lowest) - 253 (highest)]
systemHaId String
an identifier for the resource.
unicast String
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
vip String
Virtual IP.
vipInterface String
vip interface.
vrrpAdvInterval Double
VRRP advert interval [1 - 30 seconnds]
vrrpInterface String
VRRP and vip interface.
clusterid number
Cluster ID range (1 - 64).
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.
failoverMode string
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
fileQuota number
File quota in MB (2048 - 20480).
hbInterval number
Heartbeat interval (1 - 255).
hbLostThreshold number
Heartbeat lost threshold (1 - 255).
localCert string
set the ha local certificate.
mode string
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
monitoredInterfaces SystemHaMonitoredInterface[]
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
monitoredIps SystemHaMonitoredIp[]
Monitored-Ips. The structure of monitored_ips block is documented below.
passwords string[]
Group password.
peers SystemHaPeer[]
Peer. The structure of peer block is documented below.
priority number
Runtime priority [1 (lowest) - 253 (highest)]
systemHaId string
an identifier for the resource.
unicast string
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
vip string
Virtual IP.
vipInterface string
vip interface.
vrrpAdvInterval number
VRRP advert interval [1 - 30 seconnds]
vrrpInterface string
VRRP and vip interface.
clusterid float
Cluster ID range (1 - 64).
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.
failover_mode str
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
file_quota float
File quota in MB (2048 - 20480).
hb_interval float
Heartbeat interval (1 - 255).
hb_lost_threshold float
Heartbeat lost threshold (1 - 255).
local_cert str
set the ha local certificate.
mode str
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
monitored_interfaces Sequence[SystemHaMonitoredInterfaceArgs]
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
monitored_ips Sequence[SystemHaMonitoredIpArgs]
Monitored-Ips. The structure of monitored_ips block is documented below.
passwords Sequence[str]
Group password.
peers Sequence[SystemHaPeerArgs]
Peer. The structure of peer block is documented below.
priority float
Runtime priority [1 (lowest) - 253 (highest)]
system_ha_id str
an identifier for the resource.
unicast str
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
vip str
Virtual IP.
vip_interface str
vip interface.
vrrp_adv_interval float
VRRP advert interval [1 - 30 seconnds]
vrrp_interface str
VRRP and vip interface.
clusterid Number
Cluster ID range (1 - 64).
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.
failoverMode String
HA failover mode. manual - Manual Failove vrrp - Use VRRP Valid values: manual, vrrp.
fileQuota Number
File quota in MB (2048 - 20480).
hbInterval Number
Heartbeat interval (1 - 255).
hbLostThreshold Number
Heartbeat lost threshold (1 - 255).
localCert String
set the ha local certificate.
mode String
Mode. standalone - Standalone. primary - Primary. secondary - Secondary. Valid values: standalone, primary, secondary.
monitoredInterfaces List<Property Map>
Monitored-Interfaces. The structure of monitored_interfaces block is documented below.
monitoredIps List<Property Map>
Monitored-Ips. The structure of monitored_ips block is documented below.
passwords List<String>
Group password.
peers List<Property Map>
Peer. The structure of peer block is documented below.
priority Number
Runtime priority [1 (lowest) - 253 (highest)]
systemHaId String
an identifier for the resource.
unicast String
Use unitcast for VRRP message. disable - Disable. enable - Enable. Valid values: disable, enable.
vip String
Virtual IP.
vipInterface String
vip interface.
vrrpAdvInterval Number
VRRP advert interval [1 - 30 seconnds]
vrrpInterface String
VRRP and vip interface.

Supporting Types

SystemHaMonitoredInterface
, SystemHaMonitoredInterfaceArgs

InterfaceName string
Interface name.
InterfaceName string
Interface name.
interfaceName String
Interface name.
interfaceName string
Interface name.
interface_name str
Interface name.
interfaceName String
Interface name.

SystemHaMonitoredIp
, SystemHaMonitoredIpArgs

Id double
Id.
Interface string
Interface name.
Ip string
IP address.
Id float64
Id.
Interface string
Interface name.
Ip string
IP address.
id Double
Id.
interface_ String
Interface name.
ip String
IP address.
id number
Id.
interface string
Interface name.
ip string
IP address.
id float
Id.
interface str
Interface name.
ip str
IP address.
id Number
Id.
interface String
Interface name.
ip String
IP address.

SystemHaPeer
, SystemHaPeerArgs

Id double
Id.
Ip string
IP address of peer.
Ip6 string
IP address (V6) of peer.
SerialNumber string
Serial number of peer.
Status string
Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
Id float64
Id.
Ip string
IP address of peer.
Ip6 string
IP address (V6) of peer.
SerialNumber string
Serial number of peer.
Status string
Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
id Double
Id.
ip String
IP address of peer.
ip6 String
IP address (V6) of peer.
serialNumber String
Serial number of peer.
status String
Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
id number
Id.
ip string
IP address of peer.
ip6 string
IP address (V6) of peer.
serialNumber string
Serial number of peer.
status string
Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
id float
Id.
ip str
IP address of peer.
ip6 str
IP address (V6) of peer.
serial_number str
Serial number of peer.
status str
Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.
id Number
Id.
ip String
IP address of peer.
ip6 String
IP address (V6) of peer.
serialNumber String
Serial number of peer.
status String
Peer admin status. disable - Disable. enable - Enable. Valid values: disable, enable.

Import

System Ha can be imported using any of these accepted formats:

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/systemHa:SystemHa labelname SystemHa
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
fortimanager fortinetdev/terraform-provider-fortimanager
License
Notes
This Pulumi package is based on the fortimanager Terraform Provider.