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

fortimanager.ObjectUserRadiusAccountingserver

Explore with Pulumi AI

Additional accounting servers.

This resource is a sub resource for variable accounting_server of resource fortimanager.ObjectUserRadius. Conflict and overwrite may occur if use both of them.

Example Usage

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

const trnameObjectUserRadius = new fortimanager.ObjectUserRadius("trnameObjectUserRadius", {server: "2.2.2.2"});
const trnameObjectUserRadiusAccountingserver = new fortimanager.ObjectUserRadiusAccountingserver("trnameObjectUserRadiusAccountingserver", {
    radius: trnameObjectUserRadius.name,
    fosid: 1,
    "interface": "port3",
    interfaceSelectMethod: "specify",
    port: 34,
}, {
    dependsOn: [trnameObjectUserRadius],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname_object_user_radius = fortimanager.ObjectUserRadius("trnameObjectUserRadius", server="2.2.2.2")
trname_object_user_radius_accountingserver = fortimanager.ObjectUserRadiusAccountingserver("trnameObjectUserRadiusAccountingserver",
    radius=trname_object_user_radius.name,
    fosid=1,
    interface="port3",
    interface_select_method="specify",
    port=34,
    opts = pulumi.ResourceOptions(depends_on=[trname_object_user_radius]))
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		trnameObjectUserRadius, err := fortimanager.NewObjectUserRadius(ctx, "trnameObjectUserRadius", &fortimanager.ObjectUserRadiusArgs{
			Server: pulumi.String("2.2.2.2"),
		})
		if err != nil {
			return err
		}
		_, err = fortimanager.NewObjectUserRadiusAccountingserver(ctx, "trnameObjectUserRadiusAccountingserver", &fortimanager.ObjectUserRadiusAccountingserverArgs{
			Radius:                trnameObjectUserRadius.Name,
			Fosid:                 pulumi.Float64(1),
			Interface:             pulumi.String("port3"),
			InterfaceSelectMethod: pulumi.String("specify"),
			Port:                  pulumi.Float64(34),
		}, pulumi.DependsOn([]pulumi.Resource{
			trnameObjectUserRadius,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trnameObjectUserRadius = new Fortimanager.ObjectUserRadius("trnameObjectUserRadius", new()
    {
        Server = "2.2.2.2",
    });

    var trnameObjectUserRadiusAccountingserver = new Fortimanager.ObjectUserRadiusAccountingserver("trnameObjectUserRadiusAccountingserver", new()
    {
        Radius = trnameObjectUserRadius.Name,
        Fosid = 1,
        Interface = "port3",
        InterfaceSelectMethod = "specify",
        Port = 34,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trnameObjectUserRadius,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectUserRadius;
import com.pulumi.fortimanager.ObjectUserRadiusArgs;
import com.pulumi.fortimanager.ObjectUserRadiusAccountingserver;
import com.pulumi.fortimanager.ObjectUserRadiusAccountingserverArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trnameObjectUserRadius = new ObjectUserRadius("trnameObjectUserRadius", ObjectUserRadiusArgs.builder()
            .server("2.2.2.2")
            .build());

        var trnameObjectUserRadiusAccountingserver = new ObjectUserRadiusAccountingserver("trnameObjectUserRadiusAccountingserver", ObjectUserRadiusAccountingserverArgs.builder()
            .radius(trnameObjectUserRadius.name())
            .fosid(1)
            .interface_("port3")
            .interfaceSelectMethod("specify")
            .port(34)
            .build(), CustomResourceOptions.builder()
                .dependsOn(trnameObjectUserRadius)
                .build());

    }
}
Copy
resources:
  trnameObjectUserRadiusAccountingserver:
    type: fortimanager:ObjectUserRadiusAccountingserver
    properties:
      radius: ${trnameObjectUserRadius.name}
      fosid: 1
      interface: port3
      interfaceSelectMethod: specify
      port: 34
    options:
      dependsOn:
        - ${trnameObjectUserRadius}
  trnameObjectUserRadius:
    type: fortimanager:ObjectUserRadius
    properties:
      server: 2.2.2.2
Copy

Create ObjectUserRadiusAccountingserver Resource

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

Constructor syntax

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

@overload
def ObjectUserRadiusAccountingserver(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     radius: Optional[str] = None,
                                     interface_select_method: Optional[str] = None,
                                     interface: Optional[str] = None,
                                     adom: Optional[str] = None,
                                     object_user_radius_accountingserver_id: Optional[str] = None,
                                     port: Optional[float] = None,
                                     fosid: Optional[float] = None,
                                     scopetype: Optional[str] = None,
                                     secrets: Optional[Sequence[str]] = None,
                                     server: Optional[str] = None,
                                     source_ip: Optional[str] = None,
                                     status: Optional[str] = None,
                                     vrf_select: Optional[float] = None)
func NewObjectUserRadiusAccountingserver(ctx *Context, name string, args ObjectUserRadiusAccountingserverArgs, opts ...ResourceOption) (*ObjectUserRadiusAccountingserver, error)
public ObjectUserRadiusAccountingserver(string name, ObjectUserRadiusAccountingserverArgs args, CustomResourceOptions? opts = null)
public ObjectUserRadiusAccountingserver(String name, ObjectUserRadiusAccountingserverArgs args)
public ObjectUserRadiusAccountingserver(String name, ObjectUserRadiusAccountingserverArgs args, CustomResourceOptions options)
type: fortimanager:ObjectUserRadiusAccountingserver
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ObjectUserRadiusAccountingserverArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ObjectUserRadiusAccountingserverArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectUserRadiusAccountingserverArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectUserRadiusAccountingserverArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectUserRadiusAccountingserverArgs
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 objectUserRadiusAccountingserverResource = new Fortimanager.ObjectUserRadiusAccountingserver("objectUserRadiusAccountingserverResource", new()
{
    Radius = "string",
    InterfaceSelectMethod = "string",
    Interface = "string",
    Adom = "string",
    ObjectUserRadiusAccountingserverId = "string",
    Port = 0,
    Fosid = 0,
    Scopetype = "string",
    Secrets = new[]
    {
        "string",
    },
    Server = "string",
    SourceIp = "string",
    Status = "string",
    VrfSelect = 0,
});
Copy
example, err := fortimanager.NewObjectUserRadiusAccountingserver(ctx, "objectUserRadiusAccountingserverResource", &fortimanager.ObjectUserRadiusAccountingserverArgs{
Radius: pulumi.String("string"),
InterfaceSelectMethod: pulumi.String("string"),
Interface: pulumi.String("string"),
Adom: pulumi.String("string"),
ObjectUserRadiusAccountingserverId: pulumi.String("string"),
Port: pulumi.Float64(0),
Fosid: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Secrets: pulumi.StringArray{
pulumi.String("string"),
},
Server: pulumi.String("string"),
SourceIp: pulumi.String("string"),
Status: pulumi.String("string"),
VrfSelect: pulumi.Float64(0),
})
Copy
var objectUserRadiusAccountingserverResource = new ObjectUserRadiusAccountingserver("objectUserRadiusAccountingserverResource", ObjectUserRadiusAccountingserverArgs.builder()
    .radius("string")
    .interfaceSelectMethod("string")
    .interface_("string")
    .adom("string")
    .objectUserRadiusAccountingserverId("string")
    .port(0)
    .fosid(0)
    .scopetype("string")
    .secrets("string")
    .server("string")
    .sourceIp("string")
    .status("string")
    .vrfSelect(0)
    .build());
Copy
object_user_radius_accountingserver_resource = fortimanager.ObjectUserRadiusAccountingserver("objectUserRadiusAccountingserverResource",
    radius="string",
    interface_select_method="string",
    interface="string",
    adom="string",
    object_user_radius_accountingserver_id="string",
    port=0,
    fosid=0,
    scopetype="string",
    secrets=["string"],
    server="string",
    source_ip="string",
    status="string",
    vrf_select=0)
Copy
const objectUserRadiusAccountingserverResource = new fortimanager.ObjectUserRadiusAccountingserver("objectUserRadiusAccountingserverResource", {
    radius: "string",
    interfaceSelectMethod: "string",
    "interface": "string",
    adom: "string",
    objectUserRadiusAccountingserverId: "string",
    port: 0,
    fosid: 0,
    scopetype: "string",
    secrets: ["string"],
    server: "string",
    sourceIp: "string",
    status: "string",
    vrfSelect: 0,
});
Copy
type: fortimanager:ObjectUserRadiusAccountingserver
properties:
    adom: string
    fosid: 0
    interface: string
    interfaceSelectMethod: string
    objectUserRadiusAccountingserverId: string
    port: 0
    radius: string
    scopetype: string
    secrets:
        - string
    server: string
    sourceIp: string
    status: string
    vrfSelect: 0
Copy

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

Radius This property is required. string
Radius.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Fosid double
ID (0 - 4294967295).
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ObjectUserRadiusAccountingserverId string
an identifier for the resource with format {{fosid}}.
Port double
RADIUS accounting port number.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Secrets List<string>
Secret key.
Server string
{<name_str|ip_str>} Server CN domain name or IP.
SourceIp string
Source IP address for communications to the RADIUS server.
Status string
Status. Valid values: disable, enable.
VrfSelect double
VRF ID used for connection to server.
Radius This property is required. string
Radius.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Fosid float64
ID (0 - 4294967295).
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ObjectUserRadiusAccountingserverId string
an identifier for the resource with format {{fosid}}.
Port float64
RADIUS accounting port number.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Secrets []string
Secret key.
Server string
{<name_str|ip_str>} Server CN domain name or IP.
SourceIp string
Source IP address for communications to the RADIUS server.
Status string
Status. Valid values: disable, enable.
VrfSelect float64
VRF ID used for connection to server.
radius This property is required. String
Radius.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid Double
ID (0 - 4294967295).
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
interface_ String
Specify outgoing interface to reach server.
objectUserRadiusAccountingserverId String
an identifier for the resource with format {{fosid}}.
port Double
RADIUS accounting port number.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
secrets List<String>
Secret key.
server String
{<name_str|ip_str>} Server CN domain name or IP.
sourceIp String
Source IP address for communications to the RADIUS server.
status String
Status. Valid values: disable, enable.
vrfSelect Double
VRF ID used for connection to server.
radius This property is required. string
Radius.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid number
ID (0 - 4294967295).
interface string
Specify outgoing interface to reach server.
interfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
objectUserRadiusAccountingserverId string
an identifier for the resource with format {{fosid}}.
port number
RADIUS accounting port number.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
secrets string[]
Secret key.
server string
{<name_str|ip_str>} Server CN domain name or IP.
sourceIp string
Source IP address for communications to the RADIUS server.
status string
Status. Valid values: disable, enable.
vrfSelect number
VRF ID used for connection to server.
radius This property is required. str
Radius.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid float
ID (0 - 4294967295).
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.
object_user_radius_accountingserver_id str
an identifier for the resource with format {{fosid}}.
port float
RADIUS accounting port number.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
secrets Sequence[str]
Secret key.
server str
{<name_str|ip_str>} Server CN domain name or IP.
source_ip str
Source IP address for communications to the RADIUS server.
status str
Status. Valid values: disable, enable.
vrf_select float
VRF ID used for connection to server.
radius This property is required. String
Radius.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid Number
ID (0 - 4294967295).
interface String
Specify outgoing interface to reach server.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
objectUserRadiusAccountingserverId String
an identifier for the resource with format {{fosid}}.
port Number
RADIUS accounting port number.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
secrets List<String>
Secret key.
server String
{<name_str|ip_str>} Server CN domain name or IP.
sourceIp String
Source IP address for communications to the RADIUS server.
status String
Status. Valid values: disable, enable.
vrfSelect Number
VRF ID used for connection to server.

Outputs

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

Get an existing ObjectUserRadiusAccountingserver 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?: ObjectUserRadiusAccountingserverState, opts?: CustomResourceOptions): ObjectUserRadiusAccountingserver
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        fosid: Optional[float] = None,
        interface: Optional[str] = None,
        interface_select_method: Optional[str] = None,
        object_user_radius_accountingserver_id: Optional[str] = None,
        port: Optional[float] = None,
        radius: Optional[str] = None,
        scopetype: Optional[str] = None,
        secrets: Optional[Sequence[str]] = None,
        server: Optional[str] = None,
        source_ip: Optional[str] = None,
        status: Optional[str] = None,
        vrf_select: Optional[float] = None) -> ObjectUserRadiusAccountingserver
func GetObjectUserRadiusAccountingserver(ctx *Context, name string, id IDInput, state *ObjectUserRadiusAccountingserverState, opts ...ResourceOption) (*ObjectUserRadiusAccountingserver, error)
public static ObjectUserRadiusAccountingserver Get(string name, Input<string> id, ObjectUserRadiusAccountingserverState? state, CustomResourceOptions? opts = null)
public static ObjectUserRadiusAccountingserver get(String name, Output<String> id, ObjectUserRadiusAccountingserverState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectUserRadiusAccountingserver    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Fosid double
ID (0 - 4294967295).
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ObjectUserRadiusAccountingserverId string
an identifier for the resource with format {{fosid}}.
Port double
RADIUS accounting port number.
Radius string
Radius.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Secrets List<string>
Secret key.
Server string
{<name_str|ip_str>} Server CN domain name or IP.
SourceIp string
Source IP address for communications to the RADIUS server.
Status string
Status. Valid values: disable, enable.
VrfSelect double
VRF ID used for connection to server.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Fosid float64
ID (0 - 4294967295).
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
ObjectUserRadiusAccountingserverId string
an identifier for the resource with format {{fosid}}.
Port float64
RADIUS accounting port number.
Radius string
Radius.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Secrets []string
Secret key.
Server string
{<name_str|ip_str>} Server CN domain name or IP.
SourceIp string
Source IP address for communications to the RADIUS server.
Status string
Status. Valid values: disable, enable.
VrfSelect float64
VRF ID used for connection to server.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid Double
ID (0 - 4294967295).
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
interface_ String
Specify outgoing interface to reach server.
objectUserRadiusAccountingserverId String
an identifier for the resource with format {{fosid}}.
port Double
RADIUS accounting port number.
radius String
Radius.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
secrets List<String>
Secret key.
server String
{<name_str|ip_str>} Server CN domain name or IP.
sourceIp String
Source IP address for communications to the RADIUS server.
status String
Status. Valid values: disable, enable.
vrfSelect Double
VRF ID used for connection to server.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid number
ID (0 - 4294967295).
interface string
Specify outgoing interface to reach server.
interfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
objectUserRadiusAccountingserverId string
an identifier for the resource with format {{fosid}}.
port number
RADIUS accounting port number.
radius string
Radius.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
secrets string[]
Secret key.
server string
{<name_str|ip_str>} Server CN domain name or IP.
sourceIp string
Source IP address for communications to the RADIUS server.
status string
Status. Valid values: disable, enable.
vrfSelect number
VRF ID used for connection to server.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid float
ID (0 - 4294967295).
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.
object_user_radius_accountingserver_id str
an identifier for the resource with format {{fosid}}.
port float
RADIUS accounting port number.
radius str
Radius.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
secrets Sequence[str]
Secret key.
server str
{<name_str|ip_str>} Server CN domain name or IP.
source_ip str
Source IP address for communications to the RADIUS server.
status str
Status. Valid values: disable, enable.
vrf_select float
VRF ID used for connection to server.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fosid Number
ID (0 - 4294967295).
interface String
Specify outgoing interface to reach server.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
objectUserRadiusAccountingserverId String
an identifier for the resource with format {{fosid}}.
port Number
RADIUS accounting port number.
radius String
Radius.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
secrets List<String>
Secret key.
server String
{<name_str|ip_str>} Server CN domain name or IP.
sourceIp String
Source IP address for communications to the RADIUS server.
status String
Status. Valid values: disable, enable.
vrfSelect Number
VRF ID used for connection to server.

Import

ObjectUser RadiusAccountingServer can be imported using any of these accepted formats:

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectUserRadiusAccountingserver:ObjectUserRadiusAccountingserver labelname {{fosid}}
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

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

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

Package Details

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