fortimanager.ObjectWirelesscontrollerSyslogprofile
Explore with Pulumi AI
Configure Wireless Termination Points (WTP) system log server profile.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectWirelesscontrollerSyslogprofile("trname", {
logLevel: "information",
serverAddrType: "ip",
serverIp: "1.2.3.4",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectWirelesscontrollerSyslogprofile("trname",
log_level="information",
server_addr_type="ip",
server_ip="1.2.3.4")
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.NewObjectWirelesscontrollerSyslogprofile(ctx, "trname", &fortimanager.ObjectWirelesscontrollerSyslogprofileArgs{
LogLevel: pulumi.String("information"),
ServerAddrType: pulumi.String("ip"),
ServerIp: pulumi.String("1.2.3.4"),
})
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.ObjectWirelesscontrollerSyslogprofile("trname", new()
{
LogLevel = "information",
ServerAddrType = "ip",
ServerIp = "1.2.3.4",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerSyslogprofile;
import com.pulumi.fortimanager.ObjectWirelesscontrollerSyslogprofileArgs;
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 ObjectWirelesscontrollerSyslogprofile("trname", ObjectWirelesscontrollerSyslogprofileArgs.builder()
.logLevel("information")
.serverAddrType("ip")
.serverIp("1.2.3.4")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWirelesscontrollerSyslogprofile
properties:
logLevel: information
serverAddrType: ip
serverIp: 1.2.3.4
Create ObjectWirelesscontrollerSyslogprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerSyslogprofile(name: string, args?: ObjectWirelesscontrollerSyslogprofileArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerSyslogprofile(resource_name: str,
args: Optional[ObjectWirelesscontrollerSyslogprofileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerSyslogprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
log_level: Optional[str] = None,
name: Optional[str] = None,
object_wirelesscontroller_syslogprofile_id: Optional[str] = None,
scopetype: Optional[str] = None,
server_addr_type: Optional[str] = None,
server_fqdn: Optional[str] = None,
server_ip: Optional[str] = None,
server_port: Optional[float] = None,
server_status: Optional[str] = None)
func NewObjectWirelesscontrollerSyslogprofile(ctx *Context, name string, args *ObjectWirelesscontrollerSyslogprofileArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerSyslogprofile, error)
public ObjectWirelesscontrollerSyslogprofile(string name, ObjectWirelesscontrollerSyslogprofileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerSyslogprofile(String name, ObjectWirelesscontrollerSyslogprofileArgs args)
public ObjectWirelesscontrollerSyslogprofile(String name, ObjectWirelesscontrollerSyslogprofileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerSyslogprofile
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 ObjectWirelesscontrollerSyslogprofileArgs
- 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 ObjectWirelesscontrollerSyslogprofileArgs
- 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 ObjectWirelesscontrollerSyslogprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerSyslogprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerSyslogprofileArgs
- 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 objectWirelesscontrollerSyslogprofileResource = new Fortimanager.ObjectWirelesscontrollerSyslogprofile("objectWirelesscontrollerSyslogprofileResource", new()
{
Adom = "string",
Comment = "string",
LogLevel = "string",
Name = "string",
ObjectWirelesscontrollerSyslogprofileId = "string",
Scopetype = "string",
ServerAddrType = "string",
ServerFqdn = "string",
ServerIp = "string",
ServerPort = 0,
ServerStatus = "string",
});
example, err := fortimanager.NewObjectWirelesscontrollerSyslogprofile(ctx, "objectWirelesscontrollerSyslogprofileResource", &fortimanager.ObjectWirelesscontrollerSyslogprofileArgs{
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
LogLevel: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectWirelesscontrollerSyslogprofileId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
ServerAddrType: pulumi.String("string"),
ServerFqdn: pulumi.String("string"),
ServerIp: pulumi.String("string"),
ServerPort: pulumi.Float64(0),
ServerStatus: pulumi.String("string"),
})
var objectWirelesscontrollerSyslogprofileResource = new ObjectWirelesscontrollerSyslogprofile("objectWirelesscontrollerSyslogprofileResource", ObjectWirelesscontrollerSyslogprofileArgs.builder()
.adom("string")
.comment("string")
.logLevel("string")
.name("string")
.objectWirelesscontrollerSyslogprofileId("string")
.scopetype("string")
.serverAddrType("string")
.serverFqdn("string")
.serverIp("string")
.serverPort(0)
.serverStatus("string")
.build());
object_wirelesscontroller_syslogprofile_resource = fortimanager.ObjectWirelesscontrollerSyslogprofile("objectWirelesscontrollerSyslogprofileResource",
adom="string",
comment="string",
log_level="string",
name="string",
object_wirelesscontroller_syslogprofile_id="string",
scopetype="string",
server_addr_type="string",
server_fqdn="string",
server_ip="string",
server_port=0,
server_status="string")
const objectWirelesscontrollerSyslogprofileResource = new fortimanager.ObjectWirelesscontrollerSyslogprofile("objectWirelesscontrollerSyslogprofileResource", {
adom: "string",
comment: "string",
logLevel: "string",
name: "string",
objectWirelesscontrollerSyslogprofileId: "string",
scopetype: "string",
serverAddrType: "string",
serverFqdn: "string",
serverIp: "string",
serverPort: 0,
serverStatus: "string",
});
type: fortimanager:ObjectWirelesscontrollerSyslogprofile
properties:
adom: string
comment: string
logLevel: string
name: string
objectWirelesscontrollerSyslogprofileId: string
scopetype: string
serverAddrType: string
serverFqdn: string
serverIp: string
serverPort: 0
serverStatus: string
ObjectWirelesscontrollerSyslogprofile 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 ObjectWirelesscontrollerSyslogprofile resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Log
Level string - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - Name string
- WTP system log server profile name.
- Object
Wirelesscontroller stringSyslogprofile Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Addr stringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - Server
Fqdn string - FQDN of syslog server that FortiAP units send log messages to.
- Server
Ip string - IP address of syslog server that FortiAP units send log messages to.
- Server
Port double - Port number of syslog server that FortiAP units send log messages to (default = 514).
- Server
Status string - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Log
Level string - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - Name string
- WTP system log server profile name.
- Object
Wirelesscontroller stringSyslogprofile Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Addr stringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - Server
Fqdn string - FQDN of syslog server that FortiAP units send log messages to.
- Server
Ip string - IP address of syslog server that FortiAP units send log messages to.
- Server
Port float64 - Port number of syslog server that FortiAP units send log messages to (default = 514).
- Server
Status string - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- log
Level String - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - name String
- WTP system log server profile name.
- object
Wirelesscontroller StringSyslogprofile Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Addr StringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - server
Fqdn String - FQDN of syslog server that FortiAP units send log messages to.
- server
Ip String - IP address of syslog server that FortiAP units send log messages to.
- server
Port Double - Port number of syslog server that FortiAP units send log messages to (default = 514).
- server
Status String - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- log
Level string - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - name string
- WTP system log server profile name.
- object
Wirelesscontroller stringSyslogprofile Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Addr stringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - server
Fqdn string - FQDN of syslog server that FortiAP units send log messages to.
- server
Ip string - IP address of syslog server that FortiAP units send log messages to.
- server
Port number - Port number of syslog server that FortiAP units send log messages to (default = 514).
- server
Status string - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comment.
- log_
level str - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - name str
- WTP system log server profile name.
- object_
wirelesscontroller_ strsyslogprofile_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server_
addr_ strtype - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - server_
fqdn str - FQDN of syslog server that FortiAP units send log messages to.
- server_
ip str - IP address of syslog server that FortiAP units send log messages to.
- server_
port float - Port number of syslog server that FortiAP units send log messages to (default = 514).
- server_
status str - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- log
Level String - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - name String
- WTP system log server profile name.
- object
Wirelesscontroller StringSyslogprofile Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Addr StringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - server
Fqdn String - FQDN of syslog server that FortiAP units send log messages to.
- server
Ip String - IP address of syslog server that FortiAP units send log messages to.
- server
Port Number - Port number of syslog server that FortiAP units send log messages to (default = 514).
- server
Status String - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerSyslogprofile 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 ObjectWirelesscontrollerSyslogprofile Resource
Get an existing ObjectWirelesscontrollerSyslogprofile 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?: ObjectWirelesscontrollerSyslogprofileState, opts?: CustomResourceOptions): ObjectWirelesscontrollerSyslogprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
log_level: Optional[str] = None,
name: Optional[str] = None,
object_wirelesscontroller_syslogprofile_id: Optional[str] = None,
scopetype: Optional[str] = None,
server_addr_type: Optional[str] = None,
server_fqdn: Optional[str] = None,
server_ip: Optional[str] = None,
server_port: Optional[float] = None,
server_status: Optional[str] = None) -> ObjectWirelesscontrollerSyslogprofile
func GetObjectWirelesscontrollerSyslogprofile(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerSyslogprofileState, opts ...ResourceOption) (*ObjectWirelesscontrollerSyslogprofile, error)
public static ObjectWirelesscontrollerSyslogprofile Get(string name, Input<string> id, ObjectWirelesscontrollerSyslogprofileState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerSyslogprofile get(String name, Output<String> id, ObjectWirelesscontrollerSyslogprofileState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWirelesscontrollerSyslogprofile 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Log
Level string - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - Name string
- WTP system log server profile name.
- Object
Wirelesscontroller stringSyslogprofile Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Addr stringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - Server
Fqdn string - FQDN of syslog server that FortiAP units send log messages to.
- Server
Ip string - IP address of syslog server that FortiAP units send log messages to.
- Server
Port double - Port number of syslog server that FortiAP units send log messages to (default = 514).
- Server
Status string - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Log
Level string - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - Name string
- WTP system log server profile name.
- Object
Wirelesscontroller stringSyslogprofile Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Addr stringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - Server
Fqdn string - FQDN of syslog server that FortiAP units send log messages to.
- Server
Ip string - IP address of syslog server that FortiAP units send log messages to.
- Server
Port float64 - Port number of syslog server that FortiAP units send log messages to (default = 514).
- Server
Status string - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- log
Level String - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - name String
- WTP system log server profile name.
- object
Wirelesscontroller StringSyslogprofile Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Addr StringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - server
Fqdn String - FQDN of syslog server that FortiAP units send log messages to.
- server
Ip String - IP address of syslog server that FortiAP units send log messages to.
- server
Port Double - Port number of syslog server that FortiAP units send log messages to (default = 514).
- server
Status String - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- log
Level string - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - name string
- WTP system log server profile name.
- object
Wirelesscontroller stringSyslogprofile Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Addr stringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - server
Fqdn string - FQDN of syslog server that FortiAP units send log messages to.
- server
Ip string - IP address of syslog server that FortiAP units send log messages to.
- server
Port number - Port number of syslog server that FortiAP units send log messages to (default = 514).
- server
Status string - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comment.
- log_
level str - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - name str
- WTP system log server profile name.
- object_
wirelesscontroller_ strsyslogprofile_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server_
addr_ strtype - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - server_
fqdn str - FQDN of syslog server that FortiAP units send log messages to.
- server_
ip str - IP address of syslog server that FortiAP units send log messages to.
- server_
port float - Port number of syslog server that FortiAP units send log messages to (default = 514).
- server_
status str - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- log
Level String - Lowest level of log messages that FortiAP units send to this server (default = information). Valid values:
emergency
,alert
,critical
,error
,warning
,notification
,information
,debugging
. - name String
- WTP system log server profile name.
- object
Wirelesscontroller StringSyslogprofile Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Addr StringType - Syslog server address type (default = ip). Valid values:
fqdn
,ip
. - server
Fqdn String - FQDN of syslog server that FortiAP units send log messages to.
- server
Ip String - IP address of syslog server that FortiAP units send log messages to.
- server
Port Number - Port number of syslog server that FortiAP units send log messages to (default = 514).
- server
Status String - Enable/disable FortiAP units to send log messages to a syslog server (default = enable). Valid values:
disable
,enable
.
Import
ObjectWirelessController SyslogProfile can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerSyslogprofile:ObjectWirelesscontrollerSyslogprofile labelname {{name}}
$ 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.