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

fortimanager.SystemLocallogFortianalyzer2Setting

Explore with Pulumi AI

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

    Settings for locallog to fortianalyzer.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemLocallogFortianalyzer2Setting("trname", {
        reliable: "enable",
        severity: "emergency",
        status: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemLocallogFortianalyzer2Setting("trname",
        reliable="enable",
        severity="emergency",
        status="enable")
    
    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.NewSystemLocallogFortianalyzer2Setting(ctx, "trname", &fortimanager.SystemLocallogFortianalyzer2SettingArgs{
    			Reliable: pulumi.String("enable"),
    			Severity: pulumi.String("emergency"),
    			Status:   pulumi.String("enable"),
    		})
    		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 trname = new Fortimanager.SystemLocallogFortianalyzer2Setting("trname", new()
        {
            Reliable = "enable",
            Severity = "emergency",
            Status = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemLocallogFortianalyzer2Setting;
    import com.pulumi.fortimanager.SystemLocallogFortianalyzer2SettingArgs;
    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 SystemLocallogFortianalyzer2Setting("trname", SystemLocallogFortianalyzer2SettingArgs.builder()
                .reliable("enable")
                .severity("emergency")
                .status("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemLocallogFortianalyzer2Setting
        properties:
          reliable: enable
          severity: emergency
          status: enable
    

    Create SystemLocallogFortianalyzer2Setting Resource

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

    Constructor syntax

    new SystemLocallogFortianalyzer2Setting(name: string, args?: SystemLocallogFortianalyzer2SettingArgs, opts?: CustomResourceOptions);
    @overload
    def SystemLocallogFortianalyzer2Setting(resource_name: str,
                                            args: Optional[SystemLocallogFortianalyzer2SettingArgs] = None,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemLocallogFortianalyzer2Setting(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            peer_cert_cn: Optional[str] = None,
                                            reliable: Optional[str] = None,
                                            secure_connection: Optional[str] = None,
                                            server: Optional[str] = None,
                                            severity: Optional[str] = None,
                                            status: Optional[str] = None,
                                            system_locallog_fortianalyzer2_setting_id: Optional[str] = None,
                                            upload_times: Optional[Sequence[str]] = None)
    func NewSystemLocallogFortianalyzer2Setting(ctx *Context, name string, args *SystemLocallogFortianalyzer2SettingArgs, opts ...ResourceOption) (*SystemLocallogFortianalyzer2Setting, error)
    public SystemLocallogFortianalyzer2Setting(string name, SystemLocallogFortianalyzer2SettingArgs? args = null, CustomResourceOptions? opts = null)
    public SystemLocallogFortianalyzer2Setting(String name, SystemLocallogFortianalyzer2SettingArgs args)
    public SystemLocallogFortianalyzer2Setting(String name, SystemLocallogFortianalyzer2SettingArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemLocallogFortianalyzer2Setting
    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 SystemLocallogFortianalyzer2SettingArgs
    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 SystemLocallogFortianalyzer2SettingArgs
    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 SystemLocallogFortianalyzer2SettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemLocallogFortianalyzer2SettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemLocallogFortianalyzer2SettingArgs
    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 systemLocallogFortianalyzer2SettingResource = new Fortimanager.SystemLocallogFortianalyzer2Setting("systemLocallogFortianalyzer2SettingResource", new()
    {
        PeerCertCn = "string",
        Reliable = "string",
        SecureConnection = "string",
        Server = "string",
        Severity = "string",
        Status = "string",
        SystemLocallogFortianalyzer2SettingId = "string",
        UploadTimes = new[]
        {
            "string",
        },
    });
    
    example, err := fortimanager.NewSystemLocallogFortianalyzer2Setting(ctx, "systemLocallogFortianalyzer2SettingResource", &fortimanager.SystemLocallogFortianalyzer2SettingArgs{
    PeerCertCn: pulumi.String("string"),
    Reliable: pulumi.String("string"),
    SecureConnection: pulumi.String("string"),
    Server: pulumi.String("string"),
    Severity: pulumi.String("string"),
    Status: pulumi.String("string"),
    SystemLocallogFortianalyzer2SettingId: pulumi.String("string"),
    UploadTimes: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var systemLocallogFortianalyzer2SettingResource = new SystemLocallogFortianalyzer2Setting("systemLocallogFortianalyzer2SettingResource", SystemLocallogFortianalyzer2SettingArgs.builder()
        .peerCertCn("string")
        .reliable("string")
        .secureConnection("string")
        .server("string")
        .severity("string")
        .status("string")
        .systemLocallogFortianalyzer2SettingId("string")
        .uploadTimes("string")
        .build());
    
    system_locallog_fortianalyzer2_setting_resource = fortimanager.SystemLocallogFortianalyzer2Setting("systemLocallogFortianalyzer2SettingResource",
        peer_cert_cn="string",
        reliable="string",
        secure_connection="string",
        server="string",
        severity="string",
        status="string",
        system_locallog_fortianalyzer2_setting_id="string",
        upload_times=["string"])
    
    const systemLocallogFortianalyzer2SettingResource = new fortimanager.SystemLocallogFortianalyzer2Setting("systemLocallogFortianalyzer2SettingResource", {
        peerCertCn: "string",
        reliable: "string",
        secureConnection: "string",
        server: "string",
        severity: "string",
        status: "string",
        systemLocallogFortianalyzer2SettingId: "string",
        uploadTimes: ["string"],
    });
    
    type: fortimanager:SystemLocallogFortianalyzer2Setting
    properties:
        peerCertCn: string
        reliable: string
        secureConnection: string
        server: string
        severity: string
        status: string
        systemLocallogFortianalyzer2SettingId: string
        uploadTimes:
            - string
    

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

    PeerCertCn string
    Certificate common name of remote fortianalyzer.
    Reliable string
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    SecureConnection string
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    Server string
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    Severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    Status string
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    SystemLocallogFortianalyzer2SettingId string
    an identifier for the resource.
    UploadTimes List<string>
    Time to upload local log files (hh:mm).
    PeerCertCn string
    Certificate common name of remote fortianalyzer.
    Reliable string
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    SecureConnection string
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    Server string
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    Severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    Status string
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    SystemLocallogFortianalyzer2SettingId string
    an identifier for the resource.
    UploadTimes []string
    Time to upload local log files (hh:mm).
    peerCertCn String
    Certificate common name of remote fortianalyzer.
    reliable String
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    secureConnection String
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    server String
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    severity String
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status String
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    systemLocallogFortianalyzer2SettingId String
    an identifier for the resource.
    uploadTimes List<String>
    Time to upload local log files (hh:mm).
    peerCertCn string
    Certificate common name of remote fortianalyzer.
    reliable string
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    secureConnection string
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    server string
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status string
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    systemLocallogFortianalyzer2SettingId string
    an identifier for the resource.
    uploadTimes string[]
    Time to upload local log files (hh:mm).
    peer_cert_cn str
    Certificate common name of remote fortianalyzer.
    reliable str
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    secure_connection str
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    server str
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    severity str
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status str
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    system_locallog_fortianalyzer2_setting_id str
    an identifier for the resource.
    upload_times Sequence[str]
    Time to upload local log files (hh:mm).
    peerCertCn String
    Certificate common name of remote fortianalyzer.
    reliable String
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    secureConnection String
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    server String
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    severity String
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status String
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    systemLocallogFortianalyzer2SettingId String
    an identifier for the resource.
    uploadTimes List<String>
    Time to upload local log files (hh:mm).

    Outputs

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

    Get an existing SystemLocallogFortianalyzer2Setting 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?: SystemLocallogFortianalyzer2SettingState, opts?: CustomResourceOptions): SystemLocallogFortianalyzer2Setting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            peer_cert_cn: Optional[str] = None,
            reliable: Optional[str] = None,
            secure_connection: Optional[str] = None,
            server: Optional[str] = None,
            severity: Optional[str] = None,
            status: Optional[str] = None,
            system_locallog_fortianalyzer2_setting_id: Optional[str] = None,
            upload_times: Optional[Sequence[str]] = None) -> SystemLocallogFortianalyzer2Setting
    func GetSystemLocallogFortianalyzer2Setting(ctx *Context, name string, id IDInput, state *SystemLocallogFortianalyzer2SettingState, opts ...ResourceOption) (*SystemLocallogFortianalyzer2Setting, error)
    public static SystemLocallogFortianalyzer2Setting Get(string name, Input<string> id, SystemLocallogFortianalyzer2SettingState? state, CustomResourceOptions? opts = null)
    public static SystemLocallogFortianalyzer2Setting get(String name, Output<String> id, SystemLocallogFortianalyzer2SettingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemLocallogFortianalyzer2Setting    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:
    PeerCertCn string
    Certificate common name of remote fortianalyzer.
    Reliable string
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    SecureConnection string
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    Server string
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    Severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    Status string
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    SystemLocallogFortianalyzer2SettingId string
    an identifier for the resource.
    UploadTimes List<string>
    Time to upload local log files (hh:mm).
    PeerCertCn string
    Certificate common name of remote fortianalyzer.
    Reliable string
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    SecureConnection string
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    Server string
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    Severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    Status string
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    SystemLocallogFortianalyzer2SettingId string
    an identifier for the resource.
    UploadTimes []string
    Time to upload local log files (hh:mm).
    peerCertCn String
    Certificate common name of remote fortianalyzer.
    reliable String
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    secureConnection String
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    server String
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    severity String
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status String
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    systemLocallogFortianalyzer2SettingId String
    an identifier for the resource.
    uploadTimes List<String>
    Time to upload local log files (hh:mm).
    peerCertCn string
    Certificate common name of remote fortianalyzer.
    reliable string
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    secureConnection string
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    server string
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    severity string
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status string
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    systemLocallogFortianalyzer2SettingId string
    an identifier for the resource.
    uploadTimes string[]
    Time to upload local log files (hh:mm).
    peer_cert_cn str
    Certificate common name of remote fortianalyzer.
    reliable str
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    secure_connection str
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    server str
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    severity str
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status str
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    system_locallog_fortianalyzer2_setting_id str
    an identifier for the resource.
    upload_times Sequence[str]
    Time to upload local log files (hh:mm).
    peerCertCn String
    Certificate common name of remote fortianalyzer.
    reliable String
    Enable/disable reliable realtime logging. disable - Disable reliable realtime logging. enable - Enable reliable realtime logging. Valid values: disable, enable.
    secureConnection String
    Enable/disable connection secured by TLS/SSL. disable - Disable SSL connection. enable - Enable SSL connection. Valid values: disable, enable.
    server String
    Remote FortiAnalyzer server FQDN, hostname, or IP address
    severity String
    Least severity level to log. emergency - Emergency level. alert - Alert level. critical - Critical level. error - Error level. warning - Warning level. notification - Notification level. information - Information level. debug - Debug level. Valid values: emergency, alert, critical, error, warning, notification, information, debug.
    status String
    Log to FortiAnalyzer status. disable - Log to FortiAnalyzer disabled. realtime - Log to FortiAnalyzer in realtime. upload - Log to FortiAnalyzer at schedule time. Valid values: disable, realtime, upload.
    systemLocallogFortianalyzer2SettingId String
    an identifier for the resource.
    uploadTimes List<String>
    Time to upload local log files (hh:mm).

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemLocallogFortianalyzer2Setting:SystemLocallogFortianalyzer2Setting labelname SystemLocallogFortianalyzer2Setting
    

    $ 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev