fortimanager.ObjectUserRadiusAccountingserver
Explore with Pulumi AI
Additional accounting servers.
This resource is a sub resource for variable
accounting_server
of resourcefortimanager.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],
});
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]))
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
})
}
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,
},
});
});
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());
}
}
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
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,
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,
scopetype: Optional[str] = None,
secrets: Optional[Sequence[str]] = None,
server: Optional[str] = None,
source_ip: Optional[str] = None,
status: Optional[str] = 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 string
- The unique name of the resource.
- args ObjectUserRadiusAccountingserverArgs
- 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 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 string
- The unique name of the resource.
- args ObjectUserRadiusAccountingserverArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectUserRadiusAccountingserverArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
Adom = "string",
Fosid = 0,
Interface = "string",
InterfaceSelectMethod = "string",
ObjectUserRadiusAccountingserverId = "string",
Port = 0,
Scopetype = "string",
Secrets = new[]
{
"string",
},
Server = "string",
SourceIp = "string",
Status = "string",
});
example, err := fortimanager.NewObjectUserRadiusAccountingserver(ctx, "objectUserRadiusAccountingserverResource", &fortimanager.ObjectUserRadiusAccountingserverArgs{
Radius: pulumi.String("string"),
Adom: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Interface: pulumi.String("string"),
InterfaceSelectMethod: pulumi.String("string"),
ObjectUserRadiusAccountingserverId: pulumi.String("string"),
Port: 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"),
})
var objectUserRadiusAccountingserverResource = new ObjectUserRadiusAccountingserver("objectUserRadiusAccountingserverResource", ObjectUserRadiusAccountingserverArgs.builder()
.radius("string")
.adom("string")
.fosid(0)
.interface_("string")
.interfaceSelectMethod("string")
.objectUserRadiusAccountingserverId("string")
.port(0)
.scopetype("string")
.secrets("string")
.server("string")
.sourceIp("string")
.status("string")
.build());
object_user_radius_accountingserver_resource = fortimanager.ObjectUserRadiusAccountingserver("objectUserRadiusAccountingserverResource",
radius="string",
adom="string",
fosid=0,
interface="string",
interface_select_method="string",
object_user_radius_accountingserver_id="string",
port=0,
scopetype="string",
secrets=["string"],
server="string",
source_ip="string",
status="string")
const objectUserRadiusAccountingserverResource = new fortimanager.ObjectUserRadiusAccountingserver("objectUserRadiusAccountingserverResource", {
radius: "string",
adom: "string",
fosid: 0,
"interface": "string",
interfaceSelectMethod: "string",
objectUserRadiusAccountingserverId: "string",
port: 0,
scopetype: "string",
secrets: ["string"],
server: "string",
sourceIp: "string",
status: "string",
});
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
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 string
- Radius.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid double
- ID (0 - 4294967295).
- Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Object
User stringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Secrets List<string>
- Secret key.
- Server string
- {<name_str|ip_str>} Server CN domain name or IP.
- Source
Ip string - Source IP address for communications to the RADIUS server.
- Status string
- Status. Valid values:
disable
,enable
.
- Radius string
- Radius.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- ID (0 - 4294967295).
- Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Object
User stringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Secrets []string
- Secret key.
- Server string
- {<name_str|ip_str>} Server CN domain name or IP.
- Source
Ip string - Source IP address for communications to the RADIUS server.
- Status string
- Status. Valid values:
disable
,enable
.
- radius String
- Radius.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- ID (0 - 4294967295).
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - interface_ String
- Specify outgoing interface to reach server.
- object
User StringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - secrets List<String>
- Secret key.
- server String
- {<name_str|ip_str>} Server CN domain name or IP.
- source
Ip String - Source IP address for communications to the RADIUS server.
- status String
- Status. Valid values:
disable
,enable
.
- radius string
- Radius.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- ID (0 - 4294967295).
- interface string
- Specify outgoing interface to reach server.
- interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - object
User stringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - secrets string[]
- Secret key.
- server string
- {<name_str|ip_str>} Server CN domain name or IP.
- source
Ip string - Source IP address for communications to the RADIUS server.
- status string
- Status. Valid values:
disable
,enable
.
- radius str
- Radius.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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_ strmethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - object_
user_ strradius_ accountingserver_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
.
- radius String
- Radius.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- ID (0 - 4294967295).
- interface String
- Specify outgoing interface to reach server.
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - object
User StringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - secrets List<String>
- Secret key.
- server String
- {<name_str|ip_str>} Server CN domain name or IP.
- source
Ip String - Source IP address for communications to the RADIUS server.
- status String
- Status. Valid values:
disable
,enable
.
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) -> 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
- 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. - Fosid double
- ID (0 - 4294967295).
- Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Object
User stringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Secrets List<string>
- Secret key.
- Server string
- {<name_str|ip_str>} Server CN domain name or IP.
- Source
Ip string - Source IP address for communications to the RADIUS server.
- Status string
- Status. 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. - Fosid float64
- ID (0 - 4294967295).
- Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Object
User stringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Secrets []string
- Secret key.
- Server string
- {<name_str|ip_str>} Server CN domain name or IP.
- Source
Ip string - Source IP address for communications to the RADIUS server.
- Status string
- Status. 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. - fosid Double
- ID (0 - 4294967295).
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - interface_ String
- Specify outgoing interface to reach server.
- object
User StringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - secrets List<String>
- Secret key.
- server String
- {<name_str|ip_str>} Server CN domain name or IP.
- source
Ip String - Source IP address for communications to the RADIUS server.
- status String
- Status. 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. - fosid number
- ID (0 - 4294967295).
- interface string
- Specify outgoing interface to reach server.
- interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - object
User stringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - secrets string[]
- Secret key.
- server string
- {<name_str|ip_str>} Server CN domain name or IP.
- source
Ip string - Source IP address for communications to the RADIUS server.
- status string
- Status. 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. - fosid float
- ID (0 - 4294967295).
- interface str
- Specify outgoing interface to reach server.
- interface_
select_ strmethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - object_
user_ strradius_ accountingserver_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- ID (0 - 4294967295).
- interface String
- Specify outgoing interface to reach server.
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - object
User StringRadius Accountingserver Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - secrets List<String>
- Secret key.
- server String
- {<name_str|ip_str>} Server CN domain name or IP.
- source
Ip String - Source IP address for communications to the RADIUS server.
- status String
- Status. Valid values:
disable
,enable
.
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}}
$ 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.