1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. SystempLogFortianalyzerSetting
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.SystempLogFortianalyzerSetting

Explore with Pulumi AI

Global FortiAnalyzer settings.

Example Usage

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

const trname = new fortimanager.SystempLogFortianalyzerSetting("trname", {
    connTimeout: 60,
    devprof: "default",
    fallbackToPrimary: "disable",
    maxLogRate: 12,
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.SystempLogFortianalyzerSetting("trname",
    conn_timeout=60,
    devprof="default",
    fallback_to_primary="disable",
    max_log_rate=12)
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.NewSystempLogFortianalyzerSetting(ctx, "trname", &fortimanager.SystempLogFortianalyzerSettingArgs{
			ConnTimeout:       pulumi.Float64(60),
			Devprof:           pulumi.String("default"),
			FallbackToPrimary: pulumi.String("disable"),
			MaxLogRate:        pulumi.Float64(12),
		})
		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.SystempLogFortianalyzerSetting("trname", new()
    {
        ConnTimeout = 60,
        Devprof = "default",
        FallbackToPrimary = "disable",
        MaxLogRate = 12,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystempLogFortianalyzerSetting;
import com.pulumi.fortimanager.SystempLogFortianalyzerSettingArgs;
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 SystempLogFortianalyzerSetting("trname", SystempLogFortianalyzerSettingArgs.builder()
            .connTimeout(60)
            .devprof("default")
            .fallbackToPrimary("disable")
            .maxLogRate(12)
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:SystempLogFortianalyzerSetting
    properties:
      connTimeout: 60
      devprof: default
      fallbackToPrimary: disable
      maxLogRate: 12
Copy

Create SystempLogFortianalyzerSetting Resource

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

Constructor syntax

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

@overload
def SystempLogFortianalyzerSetting(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   devprof: Optional[str] = None,
                                   monitor_failure_retry_period: Optional[float] = None,
                                   upload_option: Optional[str] = None,
                                   certificate: Optional[str] = None,
                                   certificate_verification: Optional[str] = None,
                                   conn_timeout: Optional[float] = None,
                                   adom: Optional[str] = None,
                                   enc_algorithm: Optional[str] = None,
                                   fallback_to_primary: Optional[str] = None,
                                   hmac_algorithm: Optional[str] = None,
                                   interface: Optional[str] = None,
                                   interface_select_method: Optional[str] = None,
                                   monitor_keepalive_period: Optional[float] = None,
                                   alt_server: Optional[str] = None,
                                   max_log_rate: Optional[float] = None,
                                   ips_archive: Optional[str] = None,
                                   preshared_key: Optional[str] = None,
                                   priority: Optional[str] = None,
                                   reliable: Optional[str] = None,
                                   scopetype: Optional[str] = None,
                                   server_cert_ca: Optional[str] = None,
                                   ssl_min_proto_version: Optional[str] = None,
                                   systemp_log_fortianalyzer_setting_id: Optional[str] = None,
                                   upload_day: Optional[str] = None,
                                   upload_interval: Optional[str] = None,
                                   access_config: Optional[str] = None,
                                   upload_time: Optional[str] = None,
                                   vrf_select: Optional[float] = None)
func NewSystempLogFortianalyzerSetting(ctx *Context, name string, args SystempLogFortianalyzerSettingArgs, opts ...ResourceOption) (*SystempLogFortianalyzerSetting, error)
public SystempLogFortianalyzerSetting(string name, SystempLogFortianalyzerSettingArgs args, CustomResourceOptions? opts = null)
public SystempLogFortianalyzerSetting(String name, SystempLogFortianalyzerSettingArgs args)
public SystempLogFortianalyzerSetting(String name, SystempLogFortianalyzerSettingArgs args, CustomResourceOptions options)
type: fortimanager:SystempLogFortianalyzerSetting
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 This property is required. SystempLogFortianalyzerSettingArgs
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 This property is required. SystempLogFortianalyzerSettingArgs
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 This property is required. SystempLogFortianalyzerSettingArgs
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 This property is required. SystempLogFortianalyzerSettingArgs
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. SystempLogFortianalyzerSettingArgs
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 systempLogFortianalyzerSettingResource = new Fortimanager.SystempLogFortianalyzerSetting("systempLogFortianalyzerSettingResource", new()
{
    Devprof = "string",
    MonitorFailureRetryPeriod = 0,
    UploadOption = "string",
    Certificate = "string",
    CertificateVerification = "string",
    ConnTimeout = 0,
    Adom = "string",
    EncAlgorithm = "string",
    FallbackToPrimary = "string",
    HmacAlgorithm = "string",
    Interface = "string",
    InterfaceSelectMethod = "string",
    MonitorKeepalivePeriod = 0,
    AltServer = "string",
    MaxLogRate = 0,
    IpsArchive = "string",
    PresharedKey = "string",
    Priority = "string",
    Reliable = "string",
    Scopetype = "string",
    ServerCertCa = "string",
    SslMinProtoVersion = "string",
    SystempLogFortianalyzerSettingId = "string",
    UploadDay = "string",
    UploadInterval = "string",
    AccessConfig = "string",
    UploadTime = "string",
    VrfSelect = 0,
});
Copy
example, err := fortimanager.NewSystempLogFortianalyzerSetting(ctx, "systempLogFortianalyzerSettingResource", &fortimanager.SystempLogFortianalyzerSettingArgs{
	Devprof:                          pulumi.String("string"),
	MonitorFailureRetryPeriod:        pulumi.Float64(0),
	UploadOption:                     pulumi.String("string"),
	Certificate:                      pulumi.String("string"),
	CertificateVerification:          pulumi.String("string"),
	ConnTimeout:                      pulumi.Float64(0),
	Adom:                             pulumi.String("string"),
	EncAlgorithm:                     pulumi.String("string"),
	FallbackToPrimary:                pulumi.String("string"),
	HmacAlgorithm:                    pulumi.String("string"),
	Interface:                        pulumi.String("string"),
	InterfaceSelectMethod:            pulumi.String("string"),
	MonitorKeepalivePeriod:           pulumi.Float64(0),
	AltServer:                        pulumi.String("string"),
	MaxLogRate:                       pulumi.Float64(0),
	IpsArchive:                       pulumi.String("string"),
	PresharedKey:                     pulumi.String("string"),
	Priority:                         pulumi.String("string"),
	Reliable:                         pulumi.String("string"),
	Scopetype:                        pulumi.String("string"),
	ServerCertCa:                     pulumi.String("string"),
	SslMinProtoVersion:               pulumi.String("string"),
	SystempLogFortianalyzerSettingId: pulumi.String("string"),
	UploadDay:                        pulumi.String("string"),
	UploadInterval:                   pulumi.String("string"),
	AccessConfig:                     pulumi.String("string"),
	UploadTime:                       pulumi.String("string"),
	VrfSelect:                        pulumi.Float64(0),
})
Copy
var systempLogFortianalyzerSettingResource = new SystempLogFortianalyzerSetting("systempLogFortianalyzerSettingResource", SystempLogFortianalyzerSettingArgs.builder()
    .devprof("string")
    .monitorFailureRetryPeriod(0)
    .uploadOption("string")
    .certificate("string")
    .certificateVerification("string")
    .connTimeout(0)
    .adom("string")
    .encAlgorithm("string")
    .fallbackToPrimary("string")
    .hmacAlgorithm("string")
    .interface_("string")
    .interfaceSelectMethod("string")
    .monitorKeepalivePeriod(0)
    .altServer("string")
    .maxLogRate(0)
    .ipsArchive("string")
    .presharedKey("string")
    .priority("string")
    .reliable("string")
    .scopetype("string")
    .serverCertCa("string")
    .sslMinProtoVersion("string")
    .systempLogFortianalyzerSettingId("string")
    .uploadDay("string")
    .uploadInterval("string")
    .accessConfig("string")
    .uploadTime("string")
    .vrfSelect(0)
    .build());
Copy
systemp_log_fortianalyzer_setting_resource = fortimanager.SystempLogFortianalyzerSetting("systempLogFortianalyzerSettingResource",
    devprof="string",
    monitor_failure_retry_period=0,
    upload_option="string",
    certificate="string",
    certificate_verification="string",
    conn_timeout=0,
    adom="string",
    enc_algorithm="string",
    fallback_to_primary="string",
    hmac_algorithm="string",
    interface="string",
    interface_select_method="string",
    monitor_keepalive_period=0,
    alt_server="string",
    max_log_rate=0,
    ips_archive="string",
    preshared_key="string",
    priority="string",
    reliable="string",
    scopetype="string",
    server_cert_ca="string",
    ssl_min_proto_version="string",
    systemp_log_fortianalyzer_setting_id="string",
    upload_day="string",
    upload_interval="string",
    access_config="string",
    upload_time="string",
    vrf_select=0)
Copy
const systempLogFortianalyzerSettingResource = new fortimanager.SystempLogFortianalyzerSetting("systempLogFortianalyzerSettingResource", {
    devprof: "string",
    monitorFailureRetryPeriod: 0,
    uploadOption: "string",
    certificate: "string",
    certificateVerification: "string",
    connTimeout: 0,
    adom: "string",
    encAlgorithm: "string",
    fallbackToPrimary: "string",
    hmacAlgorithm: "string",
    "interface": "string",
    interfaceSelectMethod: "string",
    monitorKeepalivePeriod: 0,
    altServer: "string",
    maxLogRate: 0,
    ipsArchive: "string",
    presharedKey: "string",
    priority: "string",
    reliable: "string",
    scopetype: "string",
    serverCertCa: "string",
    sslMinProtoVersion: "string",
    systempLogFortianalyzerSettingId: "string",
    uploadDay: "string",
    uploadInterval: "string",
    accessConfig: "string",
    uploadTime: "string",
    vrfSelect: 0,
});
Copy
type: fortimanager:SystempLogFortianalyzerSetting
properties:
    accessConfig: string
    adom: string
    altServer: string
    certificate: string
    certificateVerification: string
    connTimeout: 0
    devprof: string
    encAlgorithm: string
    fallbackToPrimary: string
    hmacAlgorithm: string
    interface: string
    interfaceSelectMethod: string
    ipsArchive: string
    maxLogRate: 0
    monitorFailureRetryPeriod: 0
    monitorKeepalivePeriod: 0
    presharedKey: string
    priority: string
    reliable: string
    scopetype: string
    serverCertCa: string
    sslMinProtoVersion: string
    systempLogFortianalyzerSettingId: string
    uploadDay: string
    uploadInterval: string
    uploadOption: string
    uploadTime: string
    vrfSelect: 0
Copy

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

Devprof This property is required. string
Devprof.
AccessConfig string
Enable/disable FortiAnalyzer access to configuration and data. 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.
AltServer string
Alt-Server.
Certificate string
Certificate used to communicate with FortiAnalyzer.
CertificateVerification string
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
ConnTimeout double
FortiAnalyzer connection time-out in seconds (for status and log buffer).
EncAlgorithm string
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
FallbackToPrimary string
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
HmacAlgorithm string
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
IpsArchive string
Enable/disable IPS packet archive logging. Valid values: disable, enable.
MaxLogRate double
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
MonitorFailureRetryPeriod double
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
MonitorKeepalivePeriod double
Time between OFTP keepalives in seconds (for status and log buffer).
PresharedKey string
Preshared-key used for auto-authorization on FortiAnalyzer.
Priority string
Set log transmission priority. Valid values: low, default.
Reliable string
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
ServerCertCa string
Mandatory CA on FortiGate in certificate chain of server.
SslMinProtoVersion string
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
SystempLogFortianalyzerSettingId string
an identifier for the resource.
UploadDay string
Day of week (month) to upload logs.
UploadInterval string
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
UploadOption string
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
UploadTime string
Time to upload logs (hh:mm).
VrfSelect double
VRF ID used for connection to server.
Devprof This property is required. string
Devprof.
AccessConfig string
Enable/disable FortiAnalyzer access to configuration and data. 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.
AltServer string
Alt-Server.
Certificate string
Certificate used to communicate with FortiAnalyzer.
CertificateVerification string
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
ConnTimeout float64
FortiAnalyzer connection time-out in seconds (for status and log buffer).
EncAlgorithm string
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
FallbackToPrimary string
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
HmacAlgorithm string
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
IpsArchive string
Enable/disable IPS packet archive logging. Valid values: disable, enable.
MaxLogRate float64
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
MonitorFailureRetryPeriod float64
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
MonitorKeepalivePeriod float64
Time between OFTP keepalives in seconds (for status and log buffer).
PresharedKey string
Preshared-key used for auto-authorization on FortiAnalyzer.
Priority string
Set log transmission priority. Valid values: low, default.
Reliable string
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
ServerCertCa string
Mandatory CA on FortiGate in certificate chain of server.
SslMinProtoVersion string
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
SystempLogFortianalyzerSettingId string
an identifier for the resource.
UploadDay string
Day of week (month) to upload logs.
UploadInterval string
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
UploadOption string
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
UploadTime string
Time to upload logs (hh:mm).
VrfSelect float64
VRF ID used for connection to server.
devprof This property is required. String
Devprof.
accessConfig String
Enable/disable FortiAnalyzer access to configuration and data. 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.
altServer String
Alt-Server.
certificate String
Certificate used to communicate with FortiAnalyzer.
certificateVerification String
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
connTimeout Double
FortiAnalyzer connection time-out in seconds (for status and log buffer).
encAlgorithm String
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
fallbackToPrimary String
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
hmacAlgorithm String
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
interface_ String
Specify outgoing interface to reach server.
ipsArchive String
Enable/disable IPS packet archive logging. Valid values: disable, enable.
maxLogRate Double
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
monitorFailureRetryPeriod Double
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
monitorKeepalivePeriod Double
Time between OFTP keepalives in seconds (for status and log buffer).
presharedKey String
Preshared-key used for auto-authorization on FortiAnalyzer.
priority String
Set log transmission priority. Valid values: low, default.
reliable String
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
scopetype String
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
serverCertCa String
Mandatory CA on FortiGate in certificate chain of server.
sslMinProtoVersion String
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
systempLogFortianalyzerSettingId String
an identifier for the resource.
uploadDay String
Day of week (month) to upload logs.
uploadInterval String
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
uploadOption String
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
uploadTime String
Time to upload logs (hh:mm).
vrfSelect Double
VRF ID used for connection to server.
devprof This property is required. string
Devprof.
accessConfig string
Enable/disable FortiAnalyzer access to configuration and data. 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.
altServer string
Alt-Server.
certificate string
Certificate used to communicate with FortiAnalyzer.
certificateVerification string
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
connTimeout number
FortiAnalyzer connection time-out in seconds (for status and log buffer).
encAlgorithm string
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
fallbackToPrimary string
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
hmacAlgorithm string
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
interface string
Specify outgoing interface to reach server.
interfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ipsArchive string
Enable/disable IPS packet archive logging. Valid values: disable, enable.
maxLogRate number
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
monitorFailureRetryPeriod number
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
monitorKeepalivePeriod number
Time between OFTP keepalives in seconds (for status and log buffer).
presharedKey string
Preshared-key used for auto-authorization on FortiAnalyzer.
priority string
Set log transmission priority. Valid values: low, default.
reliable string
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
serverCertCa string
Mandatory CA on FortiGate in certificate chain of server.
sslMinProtoVersion string
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
systempLogFortianalyzerSettingId string
an identifier for the resource.
uploadDay string
Day of week (month) to upload logs.
uploadInterval string
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
uploadOption string
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
uploadTime string
Time to upload logs (hh:mm).
vrfSelect number
VRF ID used for connection to server.
devprof This property is required. str
Devprof.
access_config str
Enable/disable FortiAnalyzer access to configuration and data. 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.
alt_server str
Alt-Server.
certificate str
Certificate used to communicate with FortiAnalyzer.
certificate_verification str
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
conn_timeout float
FortiAnalyzer connection time-out in seconds (for status and log buffer).
enc_algorithm str
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
fallback_to_primary str
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
hmac_algorithm str
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
interface str
Specify outgoing interface to reach server.
interface_select_method str
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ips_archive str
Enable/disable IPS packet archive logging. Valid values: disable, enable.
max_log_rate float
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
monitor_failure_retry_period float
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
monitor_keepalive_period float
Time between OFTP keepalives in seconds (for status and log buffer).
preshared_key str
Preshared-key used for auto-authorization on FortiAnalyzer.
priority str
Set log transmission priority. Valid values: low, default.
reliable str
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
scopetype str
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
server_cert_ca str
Mandatory CA on FortiGate in certificate chain of server.
ssl_min_proto_version str
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
systemp_log_fortianalyzer_setting_id str
an identifier for the resource.
upload_day str
Day of week (month) to upload logs.
upload_interval str
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
upload_option str
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
upload_time str
Time to upload logs (hh:mm).
vrf_select float
VRF ID used for connection to server.
devprof This property is required. String
Devprof.
accessConfig String
Enable/disable FortiAnalyzer access to configuration and data. 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.
altServer String
Alt-Server.
certificate String
Certificate used to communicate with FortiAnalyzer.
certificateVerification String
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
connTimeout Number
FortiAnalyzer connection time-out in seconds (for status and log buffer).
encAlgorithm String
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
fallbackToPrimary String
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
hmacAlgorithm String
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
interface String
Specify outgoing interface to reach server.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ipsArchive String
Enable/disable IPS packet archive logging. Valid values: disable, enable.
maxLogRate Number
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
monitorFailureRetryPeriod Number
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
monitorKeepalivePeriod Number
Time between OFTP keepalives in seconds (for status and log buffer).
presharedKey String
Preshared-key used for auto-authorization on FortiAnalyzer.
priority String
Set log transmission priority. Valid values: low, default.
reliable String
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
scopetype String
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
serverCertCa String
Mandatory CA on FortiGate in certificate chain of server.
sslMinProtoVersion String
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
systempLogFortianalyzerSettingId String
an identifier for the resource.
uploadDay String
Day of week (month) to upload logs.
uploadInterval String
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
uploadOption String
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
uploadTime String
Time to upload logs (hh:mm).
vrfSelect Number
VRF ID used for connection to server.

Outputs

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

Get an existing SystempLogFortianalyzerSetting 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?: SystempLogFortianalyzerSettingState, opts?: CustomResourceOptions): SystempLogFortianalyzerSetting
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_config: Optional[str] = None,
        adom: Optional[str] = None,
        alt_server: Optional[str] = None,
        certificate: Optional[str] = None,
        certificate_verification: Optional[str] = None,
        conn_timeout: Optional[float] = None,
        devprof: Optional[str] = None,
        enc_algorithm: Optional[str] = None,
        fallback_to_primary: Optional[str] = None,
        hmac_algorithm: Optional[str] = None,
        interface: Optional[str] = None,
        interface_select_method: Optional[str] = None,
        ips_archive: Optional[str] = None,
        max_log_rate: Optional[float] = None,
        monitor_failure_retry_period: Optional[float] = None,
        monitor_keepalive_period: Optional[float] = None,
        preshared_key: Optional[str] = None,
        priority: Optional[str] = None,
        reliable: Optional[str] = None,
        scopetype: Optional[str] = None,
        server_cert_ca: Optional[str] = None,
        ssl_min_proto_version: Optional[str] = None,
        systemp_log_fortianalyzer_setting_id: Optional[str] = None,
        upload_day: Optional[str] = None,
        upload_interval: Optional[str] = None,
        upload_option: Optional[str] = None,
        upload_time: Optional[str] = None,
        vrf_select: Optional[float] = None) -> SystempLogFortianalyzerSetting
func GetSystempLogFortianalyzerSetting(ctx *Context, name string, id IDInput, state *SystempLogFortianalyzerSettingState, opts ...ResourceOption) (*SystempLogFortianalyzerSetting, error)
public static SystempLogFortianalyzerSetting Get(string name, Input<string> id, SystempLogFortianalyzerSettingState? state, CustomResourceOptions? opts = null)
public static SystempLogFortianalyzerSetting get(String name, Output<String> id, SystempLogFortianalyzerSettingState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:SystempLogFortianalyzerSetting    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:
AccessConfig string
Enable/disable FortiAnalyzer access to configuration and data. 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.
AltServer string
Alt-Server.
Certificate string
Certificate used to communicate with FortiAnalyzer.
CertificateVerification string
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
ConnTimeout double
FortiAnalyzer connection time-out in seconds (for status and log buffer).
Devprof string
Devprof.
EncAlgorithm string
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
FallbackToPrimary string
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
HmacAlgorithm string
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
IpsArchive string
Enable/disable IPS packet archive logging. Valid values: disable, enable.
MaxLogRate double
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
MonitorFailureRetryPeriod double
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
MonitorKeepalivePeriod double
Time between OFTP keepalives in seconds (for status and log buffer).
PresharedKey string
Preshared-key used for auto-authorization on FortiAnalyzer.
Priority string
Set log transmission priority. Valid values: low, default.
Reliable string
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
ServerCertCa string
Mandatory CA on FortiGate in certificate chain of server.
SslMinProtoVersion string
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
SystempLogFortianalyzerSettingId string
an identifier for the resource.
UploadDay string
Day of week (month) to upload logs.
UploadInterval string
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
UploadOption string
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
UploadTime string
Time to upload logs (hh:mm).
VrfSelect double
VRF ID used for connection to server.
AccessConfig string
Enable/disable FortiAnalyzer access to configuration and data. 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.
AltServer string
Alt-Server.
Certificate string
Certificate used to communicate with FortiAnalyzer.
CertificateVerification string
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
ConnTimeout float64
FortiAnalyzer connection time-out in seconds (for status and log buffer).
Devprof string
Devprof.
EncAlgorithm string
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
FallbackToPrimary string
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
HmacAlgorithm string
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
IpsArchive string
Enable/disable IPS packet archive logging. Valid values: disable, enable.
MaxLogRate float64
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
MonitorFailureRetryPeriod float64
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
MonitorKeepalivePeriod float64
Time between OFTP keepalives in seconds (for status and log buffer).
PresharedKey string
Preshared-key used for auto-authorization on FortiAnalyzer.
Priority string
Set log transmission priority. Valid values: low, default.
Reliable string
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
ServerCertCa string
Mandatory CA on FortiGate in certificate chain of server.
SslMinProtoVersion string
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
SystempLogFortianalyzerSettingId string
an identifier for the resource.
UploadDay string
Day of week (month) to upload logs.
UploadInterval string
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
UploadOption string
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
UploadTime string
Time to upload logs (hh:mm).
VrfSelect float64
VRF ID used for connection to server.
accessConfig String
Enable/disable FortiAnalyzer access to configuration and data. 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.
altServer String
Alt-Server.
certificate String
Certificate used to communicate with FortiAnalyzer.
certificateVerification String
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
connTimeout Double
FortiAnalyzer connection time-out in seconds (for status and log buffer).
devprof String
Devprof.
encAlgorithm String
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
fallbackToPrimary String
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
hmacAlgorithm String
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
interface_ String
Specify outgoing interface to reach server.
ipsArchive String
Enable/disable IPS packet archive logging. Valid values: disable, enable.
maxLogRate Double
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
monitorFailureRetryPeriod Double
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
monitorKeepalivePeriod Double
Time between OFTP keepalives in seconds (for status and log buffer).
presharedKey String
Preshared-key used for auto-authorization on FortiAnalyzer.
priority String
Set log transmission priority. Valid values: low, default.
reliable String
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
scopetype String
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
serverCertCa String
Mandatory CA on FortiGate in certificate chain of server.
sslMinProtoVersion String
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
systempLogFortianalyzerSettingId String
an identifier for the resource.
uploadDay String
Day of week (month) to upload logs.
uploadInterval String
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
uploadOption String
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
uploadTime String
Time to upload logs (hh:mm).
vrfSelect Double
VRF ID used for connection to server.
accessConfig string
Enable/disable FortiAnalyzer access to configuration and data. 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.
altServer string
Alt-Server.
certificate string
Certificate used to communicate with FortiAnalyzer.
certificateVerification string
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
connTimeout number
FortiAnalyzer connection time-out in seconds (for status and log buffer).
devprof string
Devprof.
encAlgorithm string
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
fallbackToPrimary string
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
hmacAlgorithm string
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
interface string
Specify outgoing interface to reach server.
interfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ipsArchive string
Enable/disable IPS packet archive logging. Valid values: disable, enable.
maxLogRate number
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
monitorFailureRetryPeriod number
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
monitorKeepalivePeriod number
Time between OFTP keepalives in seconds (for status and log buffer).
presharedKey string
Preshared-key used for auto-authorization on FortiAnalyzer.
priority string
Set log transmission priority. Valid values: low, default.
reliable string
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
serverCertCa string
Mandatory CA on FortiGate in certificate chain of server.
sslMinProtoVersion string
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
systempLogFortianalyzerSettingId string
an identifier for the resource.
uploadDay string
Day of week (month) to upload logs.
uploadInterval string
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
uploadOption string
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
uploadTime string
Time to upload logs (hh:mm).
vrfSelect number
VRF ID used for connection to server.
access_config str
Enable/disable FortiAnalyzer access to configuration and data. 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.
alt_server str
Alt-Server.
certificate str
Certificate used to communicate with FortiAnalyzer.
certificate_verification str
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
conn_timeout float
FortiAnalyzer connection time-out in seconds (for status and log buffer).
devprof str
Devprof.
enc_algorithm str
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
fallback_to_primary str
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
hmac_algorithm str
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
interface str
Specify outgoing interface to reach server.
interface_select_method str
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ips_archive str
Enable/disable IPS packet archive logging. Valid values: disable, enable.
max_log_rate float
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
monitor_failure_retry_period float
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
monitor_keepalive_period float
Time between OFTP keepalives in seconds (for status and log buffer).
preshared_key str
Preshared-key used for auto-authorization on FortiAnalyzer.
priority str
Set log transmission priority. Valid values: low, default.
reliable str
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
scopetype str
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
server_cert_ca str
Mandatory CA on FortiGate in certificate chain of server.
ssl_min_proto_version str
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
systemp_log_fortianalyzer_setting_id str
an identifier for the resource.
upload_day str
Day of week (month) to upload logs.
upload_interval str
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
upload_option str
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
upload_time str
Time to upload logs (hh:mm).
vrf_select float
VRF ID used for connection to server.
accessConfig String
Enable/disable FortiAnalyzer access to configuration and data. 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.
altServer String
Alt-Server.
certificate String
Certificate used to communicate with FortiAnalyzer.
certificateVerification String
Enable/disable identity verification of FortiAnalyzer by use of certificate. Valid values: disable, enable.
connTimeout Number
FortiAnalyzer connection time-out in seconds (for status and log buffer).
devprof String
Devprof.
encAlgorithm String
Configure the level of SSL protection for secure communication with FortiAnalyzer. Valid values: default, high, low, disable, high-medium, low-medium.
fallbackToPrimary String
Enable/disable this FortiGate unit to fallback to the primary FortiAnalyzer when it is available. Valid values: disable, enable.
hmacAlgorithm String
FortiAnalyzer IPsec tunnel HMAC algorithm. Valid values: sha256, sha1.
interface String
Specify outgoing interface to reach server.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ipsArchive String
Enable/disable IPS packet archive logging. Valid values: disable, enable.
maxLogRate Number
FortiAnalyzer maximum log rate in MBps (0 = unlimited).
monitorFailureRetryPeriod Number
Time between FortiAnalyzer connection retries in seconds (for status and log buffer).
monitorKeepalivePeriod Number
Time between OFTP keepalives in seconds (for status and log buffer).
presharedKey String
Preshared-key used for auto-authorization on FortiAnalyzer.
priority String
Set log transmission priority. Valid values: low, default.
reliable String
Enable/disable reliable logging to FortiAnalyzer. Valid values: disable, enable.
scopetype String
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
serverCertCa String
Mandatory CA on FortiGate in certificate chain of server.
sslMinProtoVersion String
Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1, TLSv1-1, TLSv1-2, SSLv3.
systempLogFortianalyzerSettingId String
an identifier for the resource.
uploadDay String
Day of week (month) to upload logs.
uploadInterval String
Frequency to upload log files to FortiAnalyzer. Valid values: daily, weekly, monthly.
uploadOption String
Enable/disable logging to hard disk and then uploading to FortiAnalyzer. Valid values: store-and-upload, realtime, 1-minute, 5-minute.
uploadTime String
Time to upload logs (hh:mm).
vrfSelect Number
VRF ID used for connection to server.

Import

Systemp LogFortianalyzerSetting can be imported using any of these accepted formats:

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/systempLogFortianalyzerSetting:SystempLogFortianalyzerSetting labelname SystempLogFortianalyzerSetting
Copy

$ 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.