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

fortimanager.SystempLogSyslogdSetting

Explore with Pulumi AI

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

    Global settings for remote syslog server.

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

    • custom_field_name: fortimanager.SystempLogSyslogdSettingCustomfieldname

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystempLogSyslogdSetting("trname", {
        devprof: "default",
        format: "rfc5424",
        maxLogRate: 200,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystempLogSyslogdSetting("trname",
        devprof="default",
        format="rfc5424",
        max_log_rate=200)
    
    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.NewSystempLogSyslogdSetting(ctx, "trname", &fortimanager.SystempLogSyslogdSettingArgs{
    			Devprof:    pulumi.String("default"),
    			Format:     pulumi.String("rfc5424"),
    			MaxLogRate: pulumi.Float64(200),
    		})
    		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.SystempLogSyslogdSetting("trname", new()
        {
            Devprof = "default",
            Format = "rfc5424",
            MaxLogRate = 200,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystempLogSyslogdSetting;
    import com.pulumi.fortimanager.SystempLogSyslogdSettingArgs;
    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 SystempLogSyslogdSetting("trname", SystempLogSyslogdSettingArgs.builder()
                .devprof("default")
                .format("rfc5424")
                .maxLogRate(200)
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystempLogSyslogdSetting
        properties:
          devprof: default
          format: rfc5424
          maxLogRate: 200
    

    Create SystempLogSyslogdSetting Resource

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

    Constructor syntax

    new SystempLogSyslogdSetting(name: string, args: SystempLogSyslogdSettingArgs, opts?: CustomResourceOptions);
    @overload
    def SystempLogSyslogdSetting(resource_name: str,
                                 args: SystempLogSyslogdSettingArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystempLogSyslogdSetting(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 devprof: Optional[str] = None,
                                 max_log_rate: Optional[float] = None,
                                 systemp_log_syslogd_setting_id: Optional[str] = None,
                                 interface_select_method: Optional[str] = None,
                                 dynamic_sort_subtable: Optional[str] = None,
                                 enc_algorithm: Optional[str] = None,
                                 facility: Optional[str] = None,
                                 format: Optional[str] = None,
                                 interface: Optional[str] = None,
                                 certificate: Optional[str] = None,
                                 custom_field_names: Optional[Sequence[SystempLogSyslogdSettingCustomFieldNameArgs]] = None,
                                 port: Optional[float] = None,
                                 mode: Optional[str] = None,
                                 priority: Optional[str] = None,
                                 scopetype: Optional[str] = None,
                                 server: Optional[str] = None,
                                 source_ip_interfaces: Optional[Sequence[str]] = None,
                                 ssl_min_proto_version: Optional[str] = None,
                                 status: Optional[str] = None,
                                 adom: Optional[str] = None)
    func NewSystempLogSyslogdSetting(ctx *Context, name string, args SystempLogSyslogdSettingArgs, opts ...ResourceOption) (*SystempLogSyslogdSetting, error)
    public SystempLogSyslogdSetting(string name, SystempLogSyslogdSettingArgs args, CustomResourceOptions? opts = null)
    public SystempLogSyslogdSetting(String name, SystempLogSyslogdSettingArgs args)
    public SystempLogSyslogdSetting(String name, SystempLogSyslogdSettingArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystempLogSyslogdSetting
    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 SystempLogSyslogdSettingArgs
    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 SystempLogSyslogdSettingArgs
    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 SystempLogSyslogdSettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystempLogSyslogdSettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystempLogSyslogdSettingArgs
    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 systempLogSyslogdSettingResource = new Fortimanager.SystempLogSyslogdSetting("systempLogSyslogdSettingResource", new()
    {
        Devprof = "string",
        MaxLogRate = 0,
        SystempLogSyslogdSettingId = "string",
        InterfaceSelectMethod = "string",
        DynamicSortSubtable = "string",
        EncAlgorithm = "string",
        Facility = "string",
        Format = "string",
        Interface = "string",
        Certificate = "string",
        CustomFieldNames = new[]
        {
            new Fortimanager.Inputs.SystempLogSyslogdSettingCustomFieldNameArgs
            {
                Custom = "string",
                Id = 0,
                Name = "string",
            },
        },
        Port = 0,
        Mode = "string",
        Priority = "string",
        Scopetype = "string",
        Server = "string",
        SourceIpInterfaces = new[]
        {
            "string",
        },
        SslMinProtoVersion = "string",
        Status = "string",
        Adom = "string",
    });
    
    example, err := fortimanager.NewSystempLogSyslogdSetting(ctx, "systempLogSyslogdSettingResource", &fortimanager.SystempLogSyslogdSettingArgs{
    Devprof: pulumi.String("string"),
    MaxLogRate: pulumi.Float64(0),
    SystempLogSyslogdSettingId: pulumi.String("string"),
    InterfaceSelectMethod: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    EncAlgorithm: pulumi.String("string"),
    Facility: pulumi.String("string"),
    Format: pulumi.String("string"),
    Interface: pulumi.String("string"),
    Certificate: pulumi.String("string"),
    CustomFieldNames: .SystempLogSyslogdSettingCustomFieldNameTypeArray{
    &.SystempLogSyslogdSettingCustomFieldNameTypeArgs{
    Custom: pulumi.String("string"),
    Id: pulumi.Float64(0),
    Name: pulumi.String("string"),
    },
    },
    Port: pulumi.Float64(0),
    Mode: pulumi.String("string"),
    Priority: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Server: pulumi.String("string"),
    SourceIpInterfaces: pulumi.StringArray{
    pulumi.String("string"),
    },
    SslMinProtoVersion: pulumi.String("string"),
    Status: pulumi.String("string"),
    Adom: pulumi.String("string"),
    })
    
    var systempLogSyslogdSettingResource = new SystempLogSyslogdSetting("systempLogSyslogdSettingResource", SystempLogSyslogdSettingArgs.builder()
        .devprof("string")
        .maxLogRate(0)
        .systempLogSyslogdSettingId("string")
        .interfaceSelectMethod("string")
        .dynamicSortSubtable("string")
        .encAlgorithm("string")
        .facility("string")
        .format("string")
        .interface_("string")
        .certificate("string")
        .customFieldNames(SystempLogSyslogdSettingCustomFieldNameArgs.builder()
            .custom("string")
            .id(0)
            .name("string")
            .build())
        .port(0)
        .mode("string")
        .priority("string")
        .scopetype("string")
        .server("string")
        .sourceIpInterfaces("string")
        .sslMinProtoVersion("string")
        .status("string")
        .adom("string")
        .build());
    
    systemp_log_syslogd_setting_resource = fortimanager.SystempLogSyslogdSetting("systempLogSyslogdSettingResource",
        devprof="string",
        max_log_rate=0,
        systemp_log_syslogd_setting_id="string",
        interface_select_method="string",
        dynamic_sort_subtable="string",
        enc_algorithm="string",
        facility="string",
        format="string",
        interface="string",
        certificate="string",
        custom_field_names=[{
            "custom": "string",
            "id": 0,
            "name": "string",
        }],
        port=0,
        mode="string",
        priority="string",
        scopetype="string",
        server="string",
        source_ip_interfaces=["string"],
        ssl_min_proto_version="string",
        status="string",
        adom="string")
    
    const systempLogSyslogdSettingResource = new fortimanager.SystempLogSyslogdSetting("systempLogSyslogdSettingResource", {
        devprof: "string",
        maxLogRate: 0,
        systempLogSyslogdSettingId: "string",
        interfaceSelectMethod: "string",
        dynamicSortSubtable: "string",
        encAlgorithm: "string",
        facility: "string",
        format: "string",
        "interface": "string",
        certificate: "string",
        customFieldNames: [{
            custom: "string",
            id: 0,
            name: "string",
        }],
        port: 0,
        mode: "string",
        priority: "string",
        scopetype: "string",
        server: "string",
        sourceIpInterfaces: ["string"],
        sslMinProtoVersion: "string",
        status: "string",
        adom: "string",
    });
    
    type: fortimanager:SystempLogSyslogdSetting
    properties:
        adom: string
        certificate: string
        customFieldNames:
            - custom: string
              id: 0
              name: string
        devprof: string
        dynamicSortSubtable: string
        encAlgorithm: string
        facility: string
        format: string
        interface: string
        interfaceSelectMethod: string
        maxLogRate: 0
        mode: string
        port: 0
        priority: string
        scopetype: string
        server: string
        sourceIpInterfaces:
            - string
        sslMinProtoVersion: string
        status: string
        systempLogSyslogdSettingId: string
    

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

    Devprof string
    Devprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Certificate string
    Certificate used to communicate with Syslog server.
    CustomFieldNames List<SystempLogSyslogdSettingCustomFieldName>
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    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.
    EncAlgorithm string
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    Facility string
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    Format string
    Log format. Valid values: default, csv, cef, rfc5424.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    MaxLogRate double
    Syslog maximum log rate in MBps (0 = unlimited).
    Mode string
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    Port double
    Server listen port.
    Priority string
    Set log transmission priority. Valid values: low, default.
    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.
    Server string
    Address of remote syslog server.
    SourceIpInterfaces List<string>
    Source interface of syslog.
    SslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    Status string
    Enable/disable remote syslog logging. Valid values: disable, enable.
    SystempLogSyslogdSettingId string
    an identifier for the resource.
    Devprof string
    Devprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Certificate string
    Certificate used to communicate with Syslog server.
    CustomFieldNames []SystempLogSyslogdSettingCustomFieldNameTypeArgs
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    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.
    EncAlgorithm string
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    Facility string
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    Format string
    Log format. Valid values: default, csv, cef, rfc5424.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    MaxLogRate float64
    Syslog maximum log rate in MBps (0 = unlimited).
    Mode string
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    Port float64
    Server listen port.
    Priority string
    Set log transmission priority. Valid values: low, default.
    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.
    Server string
    Address of remote syslog server.
    SourceIpInterfaces []string
    Source interface of syslog.
    SslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    Status string
    Enable/disable remote syslog logging. Valid values: disable, enable.
    SystempLogSyslogdSettingId string
    an identifier for the resource.
    devprof String
    Devprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    certificate String
    Certificate used to communicate with Syslog server.
    customFieldNames List<SystempLogSyslogdSettingCustomFieldName>
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    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.
    encAlgorithm String
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    facility String
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    format String
    Log format. Valid values: default, csv, cef, rfc5424.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    maxLogRate Double
    Syslog maximum log rate in MBps (0 = unlimited).
    mode String
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    port Double
    Server listen port.
    priority String
    Set log transmission priority. Valid values: low, default.
    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.
    server String
    Address of remote syslog server.
    sourceIpInterfaces List<String>
    Source interface of syslog.
    sslMinProtoVersion String
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    status String
    Enable/disable remote syslog logging. Valid values: disable, enable.
    systempLogSyslogdSettingId String
    an identifier for the resource.
    devprof string
    Devprof.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    certificate string
    Certificate used to communicate with Syslog server.
    customFieldNames SystempLogSyslogdSettingCustomFieldName[]
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    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.
    encAlgorithm string
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    facility string
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    format string
    Log format. Valid values: default, csv, cef, rfc5424.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    maxLogRate number
    Syslog maximum log rate in MBps (0 = unlimited).
    mode string
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    port number
    Server listen port.
    priority string
    Set log transmission priority. Valid values: low, default.
    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.
    server string
    Address of remote syslog server.
    sourceIpInterfaces string[]
    Source interface of syslog.
    sslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    status string
    Enable/disable remote syslog logging. Valid values: disable, enable.
    systempLogSyslogdSettingId string
    an identifier for the resource.
    devprof str
    Devprof.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    certificate str
    Certificate used to communicate with Syslog server.
    custom_field_names Sequence[SystempLogSyslogdSettingCustomFieldNameArgs]
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    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.
    enc_algorithm str
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    facility str
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    format str
    Log format. Valid values: default, csv, cef, rfc5424.
    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.
    max_log_rate float
    Syslog maximum log rate in MBps (0 = unlimited).
    mode str
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    port float
    Server listen port.
    priority str
    Set log transmission priority. Valid values: low, default.
    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 str
    Address of remote syslog server.
    source_ip_interfaces Sequence[str]
    Source interface of syslog.
    ssl_min_proto_version str
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    status str
    Enable/disable remote syslog logging. Valid values: disable, enable.
    systemp_log_syslogd_setting_id str
    an identifier for the resource.
    devprof String
    Devprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    certificate String
    Certificate used to communicate with Syslog server.
    customFieldNames List<Property Map>
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    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.
    encAlgorithm String
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    facility String
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    format String
    Log format. Valid values: default, csv, cef, rfc5424.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    maxLogRate Number
    Syslog maximum log rate in MBps (0 = unlimited).
    mode String
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    port Number
    Server listen port.
    priority String
    Set log transmission priority. Valid values: low, default.
    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.
    server String
    Address of remote syslog server.
    sourceIpInterfaces List<String>
    Source interface of syslog.
    sslMinProtoVersion String
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    status String
    Enable/disable remote syslog logging. Valid values: disable, enable.
    systempLogSyslogdSettingId String
    an identifier for the resource.

    Outputs

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

    Get an existing SystempLogSyslogdSetting 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?: SystempLogSyslogdSettingState, opts?: CustomResourceOptions): SystempLogSyslogdSetting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            certificate: Optional[str] = None,
            custom_field_names: Optional[Sequence[SystempLogSyslogdSettingCustomFieldNameArgs]] = None,
            devprof: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            enc_algorithm: Optional[str] = None,
            facility: Optional[str] = None,
            format: Optional[str] = None,
            interface: Optional[str] = None,
            interface_select_method: Optional[str] = None,
            max_log_rate: Optional[float] = None,
            mode: Optional[str] = None,
            port: Optional[float] = None,
            priority: Optional[str] = None,
            scopetype: Optional[str] = None,
            server: Optional[str] = None,
            source_ip_interfaces: Optional[Sequence[str]] = None,
            ssl_min_proto_version: Optional[str] = None,
            status: Optional[str] = None,
            systemp_log_syslogd_setting_id: Optional[str] = None) -> SystempLogSyslogdSetting
    func GetSystempLogSyslogdSetting(ctx *Context, name string, id IDInput, state *SystempLogSyslogdSettingState, opts ...ResourceOption) (*SystempLogSyslogdSetting, error)
    public static SystempLogSyslogdSetting Get(string name, Input<string> id, SystempLogSyslogdSettingState? state, CustomResourceOptions? opts = null)
    public static SystempLogSyslogdSetting get(String name, Output<String> id, SystempLogSyslogdSettingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystempLogSyslogdSetting    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Certificate string
    Certificate used to communicate with Syslog server.
    CustomFieldNames List<SystempLogSyslogdSettingCustomFieldName>
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    Devprof string
    Devprof.
    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.
    EncAlgorithm string
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    Facility string
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    Format string
    Log format. Valid values: default, csv, cef, rfc5424.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    MaxLogRate double
    Syslog maximum log rate in MBps (0 = unlimited).
    Mode string
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    Port double
    Server listen port.
    Priority string
    Set log transmission priority. Valid values: low, default.
    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.
    Server string
    Address of remote syslog server.
    SourceIpInterfaces List<string>
    Source interface of syslog.
    SslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    Status string
    Enable/disable remote syslog logging. Valid values: disable, enable.
    SystempLogSyslogdSettingId string
    an identifier for the resource.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Certificate string
    Certificate used to communicate with Syslog server.
    CustomFieldNames []SystempLogSyslogdSettingCustomFieldNameTypeArgs
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    Devprof string
    Devprof.
    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.
    EncAlgorithm string
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    Facility string
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    Format string
    Log format. Valid values: default, csv, cef, rfc5424.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    MaxLogRate float64
    Syslog maximum log rate in MBps (0 = unlimited).
    Mode string
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    Port float64
    Server listen port.
    Priority string
    Set log transmission priority. Valid values: low, default.
    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.
    Server string
    Address of remote syslog server.
    SourceIpInterfaces []string
    Source interface of syslog.
    SslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    Status string
    Enable/disable remote syslog logging. Valid values: disable, enable.
    SystempLogSyslogdSettingId string
    an identifier for the resource.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    certificate String
    Certificate used to communicate with Syslog server.
    customFieldNames List<SystempLogSyslogdSettingCustomFieldName>
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    devprof String
    Devprof.
    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.
    encAlgorithm String
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    facility String
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    format String
    Log format. Valid values: default, csv, cef, rfc5424.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    maxLogRate Double
    Syslog maximum log rate in MBps (0 = unlimited).
    mode String
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    port Double
    Server listen port.
    priority String
    Set log transmission priority. Valid values: low, default.
    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.
    server String
    Address of remote syslog server.
    sourceIpInterfaces List<String>
    Source interface of syslog.
    sslMinProtoVersion String
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    status String
    Enable/disable remote syslog logging. Valid values: disable, enable.
    systempLogSyslogdSettingId String
    an identifier for the resource.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    certificate string
    Certificate used to communicate with Syslog server.
    customFieldNames SystempLogSyslogdSettingCustomFieldName[]
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    devprof string
    Devprof.
    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.
    encAlgorithm string
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    facility string
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    format string
    Log format. Valid values: default, csv, cef, rfc5424.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    maxLogRate number
    Syslog maximum log rate in MBps (0 = unlimited).
    mode string
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    port number
    Server listen port.
    priority string
    Set log transmission priority. Valid values: low, default.
    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.
    server string
    Address of remote syslog server.
    sourceIpInterfaces string[]
    Source interface of syslog.
    sslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    status string
    Enable/disable remote syslog logging. Valid values: disable, enable.
    systempLogSyslogdSettingId string
    an identifier for the resource.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    certificate str
    Certificate used to communicate with Syslog server.
    custom_field_names Sequence[SystempLogSyslogdSettingCustomFieldNameArgs]
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    devprof str
    Devprof.
    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.
    enc_algorithm str
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    facility str
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    format str
    Log format. Valid values: default, csv, cef, rfc5424.
    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.
    max_log_rate float
    Syslog maximum log rate in MBps (0 = unlimited).
    mode str
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    port float
    Server listen port.
    priority str
    Set log transmission priority. Valid values: low, default.
    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 str
    Address of remote syslog server.
    source_ip_interfaces Sequence[str]
    Source interface of syslog.
    ssl_min_proto_version str
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    status str
    Enable/disable remote syslog logging. Valid values: disable, enable.
    systemp_log_syslogd_setting_id str
    an identifier for the resource.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    certificate String
    Certificate used to communicate with Syslog server.
    customFieldNames List<Property Map>
    Custom-Field-Name. The structure of custom_field_name block is documented below.
    devprof String
    Devprof.
    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.
    encAlgorithm String
    Enable/disable reliable syslogging with TLS encryption. Valid values: high, low, disable, high-medium.
    facility String
    Remote syslog facility. Valid values: kernel, user, mail, daemon, auth, syslog, lpr, news, uucp, cron, authpriv, ftp, ntp, audit, alert, clock, local0, local1, local2, local3, local4, local5, local6, local7.
    format String
    Log format. Valid values: default, csv, cef, rfc5424.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    maxLogRate Number
    Syslog maximum log rate in MBps (0 = unlimited).
    mode String
    Remote syslog logging over UDP/Reliable TCP. Valid values: udp, legacy-reliable, reliable.
    port Number
    Server listen port.
    priority String
    Set log transmission priority. Valid values: low, default.
    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.
    server String
    Address of remote syslog server.
    sourceIpInterfaces List<String>
    Source interface of syslog.
    sslMinProtoVersion String
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
    status String
    Enable/disable remote syslog logging. Valid values: disable, enable.
    systempLogSyslogdSettingId String
    an identifier for the resource.

    Supporting Types

    SystempLogSyslogdSettingCustomFieldName, SystempLogSyslogdSettingCustomFieldNameArgs

    Custom string
    Field custom name.
    Id double
    Entry ID.
    Name string
    Field name.
    Custom string
    Field custom name.
    Id float64
    Entry ID.
    Name string
    Field name.
    custom String
    Field custom name.
    id Double
    Entry ID.
    name String
    Field name.
    custom string
    Field custom name.
    id number
    Entry ID.
    name string
    Field name.
    custom str
    Field custom name.
    id float
    Entry ID.
    name str
    Field name.
    custom String
    Field custom name.
    id Number
    Entry ID.
    name String
    Field name.

    Import

    Systemp LogSyslogdSetting 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/systempLogSyslogdSetting:SystempLogSyslogdSetting labelname SystempLogSyslogdSetting
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

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

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev