fortimanager.SystemAdminRadius
Explore with Pulumi AI
Configure radius.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystemAdminRadius("trname", {
authType: "pap",
port: 1812,
server: "ALL",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystemAdminRadius("trname",
auth_type="pap",
port=1812,
server="ALL")
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.NewSystemAdminRadius(ctx, "trname", &fortimanager.SystemAdminRadiusArgs{
AuthType: pulumi.String("pap"),
Port: pulumi.Float64(1812),
Server: pulumi.String("ALL"),
})
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.SystemAdminRadius("trname", new()
{
AuthType = "pap",
Port = 1812,
Server = "ALL",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemAdminRadius;
import com.pulumi.fortimanager.SystemAdminRadiusArgs;
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 SystemAdminRadius("trname", SystemAdminRadiusArgs.builder()
.authType("pap")
.port(1812)
.server("ALL")
.build());
}
}
resources:
trname:
type: fortimanager:SystemAdminRadius
properties:
authType: pap
port: 1812
server: ALL
Create SystemAdminRadius Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemAdminRadius(name: string, args?: SystemAdminRadiusArgs, opts?: CustomResourceOptions);
@overload
def SystemAdminRadius(resource_name: str,
args: Optional[SystemAdminRadiusArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemAdminRadius(resource_name: str,
opts: Optional[ResourceOptions] = None,
auth_type: Optional[str] = None,
name: Optional[str] = None,
nas_ip: Optional[str] = None,
port: Optional[float] = None,
secondary_secrets: Optional[Sequence[str]] = None,
secondary_server: Optional[str] = None,
secrets: Optional[Sequence[str]] = None,
server: Optional[str] = None,
system_admin_radius_id: Optional[str] = None)
func NewSystemAdminRadius(ctx *Context, name string, args *SystemAdminRadiusArgs, opts ...ResourceOption) (*SystemAdminRadius, error)
public SystemAdminRadius(string name, SystemAdminRadiusArgs? args = null, CustomResourceOptions? opts = null)
public SystemAdminRadius(String name, SystemAdminRadiusArgs args)
public SystemAdminRadius(String name, SystemAdminRadiusArgs args, CustomResourceOptions options)
type: fortimanager:SystemAdminRadius
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 SystemAdminRadiusArgs
- 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 SystemAdminRadiusArgs
- 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 SystemAdminRadiusArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemAdminRadiusArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemAdminRadiusArgs
- 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 systemAdminRadiusResource = new Fortimanager.SystemAdminRadius("systemAdminRadiusResource", new()
{
AuthType = "string",
Name = "string",
NasIp = "string",
Port = 0,
SecondarySecrets = new[]
{
"string",
},
SecondaryServer = "string",
Secrets = new[]
{
"string",
},
Server = "string",
SystemAdminRadiusId = "string",
});
example, err := fortimanager.NewSystemAdminRadius(ctx, "systemAdminRadiusResource", &fortimanager.SystemAdminRadiusArgs{
AuthType: pulumi.String("string"),
Name: pulumi.String("string"),
NasIp: pulumi.String("string"),
Port: pulumi.Float64(0),
SecondarySecrets: pulumi.StringArray{
pulumi.String("string"),
},
SecondaryServer: pulumi.String("string"),
Secrets: pulumi.StringArray{
pulumi.String("string"),
},
Server: pulumi.String("string"),
SystemAdminRadiusId: pulumi.String("string"),
})
var systemAdminRadiusResource = new SystemAdminRadius("systemAdminRadiusResource", SystemAdminRadiusArgs.builder()
.authType("string")
.name("string")
.nasIp("string")
.port(0)
.secondarySecrets("string")
.secondaryServer("string")
.secrets("string")
.server("string")
.systemAdminRadiusId("string")
.build());
system_admin_radius_resource = fortimanager.SystemAdminRadius("systemAdminRadiusResource",
auth_type="string",
name="string",
nas_ip="string",
port=0,
secondary_secrets=["string"],
secondary_server="string",
secrets=["string"],
server="string",
system_admin_radius_id="string")
const systemAdminRadiusResource = new fortimanager.SystemAdminRadius("systemAdminRadiusResource", {
authType: "string",
name: "string",
nasIp: "string",
port: 0,
secondarySecrets: ["string"],
secondaryServer: "string",
secrets: ["string"],
server: "string",
systemAdminRadiusId: "string",
});
type: fortimanager:SystemAdminRadius
properties:
authType: string
name: string
nasIp: string
port: 0
secondarySecrets:
- string
secondaryServer: string
secrets:
- string
server: string
systemAdminRadiusId: string
SystemAdminRadius 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 SystemAdminRadius resource accepts the following input properties:
- Auth
Type string - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - Name string
- Name.
- Nas
Ip string - NAS IP address and called station ID.
- Port double
- Server port.
- Secondary
Secrets List<string> - Secondary server secret.
- Secondary
Server string - Secondary server name/IP.
- Secrets List<string>
- Server secret.
- Server string
- Server name/IP.
- System
Admin stringRadius Id - an identifier for the resource with format {{name}}.
- Auth
Type string - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - Name string
- Name.
- Nas
Ip string - NAS IP address and called station ID.
- Port float64
- Server port.
- Secondary
Secrets []string - Secondary server secret.
- Secondary
Server string - Secondary server name/IP.
- Secrets []string
- Server secret.
- Server string
- Server name/IP.
- System
Admin stringRadius Id - an identifier for the resource with format {{name}}.
- auth
Type String - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - name String
- Name.
- nas
Ip String - NAS IP address and called station ID.
- port Double
- Server port.
- secondary
Secrets List<String> - Secondary server secret.
- secondary
Server String - Secondary server name/IP.
- secrets List<String>
- Server secret.
- server String
- Server name/IP.
- system
Admin StringRadius Id - an identifier for the resource with format {{name}}.
- auth
Type string - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - name string
- Name.
- nas
Ip string - NAS IP address and called station ID.
- port number
- Server port.
- secondary
Secrets string[] - Secondary server secret.
- secondary
Server string - Secondary server name/IP.
- secrets string[]
- Server secret.
- server string
- Server name/IP.
- system
Admin stringRadius Id - an identifier for the resource with format {{name}}.
- auth_
type str - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - name str
- Name.
- nas_
ip str - NAS IP address and called station ID.
- port float
- Server port.
- secondary_
secrets Sequence[str] - Secondary server secret.
- secondary_
server str - Secondary server name/IP.
- secrets Sequence[str]
- Server secret.
- server str
- Server name/IP.
- system_
admin_ strradius_ id - an identifier for the resource with format {{name}}.
- auth
Type String - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - name String
- Name.
- nas
Ip String - NAS IP address and called station ID.
- port Number
- Server port.
- secondary
Secrets List<String> - Secondary server secret.
- secondary
Server String - Secondary server name/IP.
- secrets List<String>
- Server secret.
- server String
- Server name/IP.
- system
Admin StringRadius Id - an identifier for the resource with format {{name}}.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemAdminRadius 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 SystemAdminRadius Resource
Get an existing SystemAdminRadius 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?: SystemAdminRadiusState, opts?: CustomResourceOptions): SystemAdminRadius
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auth_type: Optional[str] = None,
name: Optional[str] = None,
nas_ip: Optional[str] = None,
port: Optional[float] = None,
secondary_secrets: Optional[Sequence[str]] = None,
secondary_server: Optional[str] = None,
secrets: Optional[Sequence[str]] = None,
server: Optional[str] = None,
system_admin_radius_id: Optional[str] = None) -> SystemAdminRadius
func GetSystemAdminRadius(ctx *Context, name string, id IDInput, state *SystemAdminRadiusState, opts ...ResourceOption) (*SystemAdminRadius, error)
public static SystemAdminRadius Get(string name, Input<string> id, SystemAdminRadiusState? state, CustomResourceOptions? opts = null)
public static SystemAdminRadius get(String name, Output<String> id, SystemAdminRadiusState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystemAdminRadius 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.
- Auth
Type string - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - Name string
- Name.
- Nas
Ip string - NAS IP address and called station ID.
- Port double
- Server port.
- Secondary
Secrets List<string> - Secondary server secret.
- Secondary
Server string - Secondary server name/IP.
- Secrets List<string>
- Server secret.
- Server string
- Server name/IP.
- System
Admin stringRadius Id - an identifier for the resource with format {{name}}.
- Auth
Type string - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - Name string
- Name.
- Nas
Ip string - NAS IP address and called station ID.
- Port float64
- Server port.
- Secondary
Secrets []string - Secondary server secret.
- Secondary
Server string - Secondary server name/IP.
- Secrets []string
- Server secret.
- Server string
- Server name/IP.
- System
Admin stringRadius Id - an identifier for the resource with format {{name}}.
- auth
Type String - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - name String
- Name.
- nas
Ip String - NAS IP address and called station ID.
- port Double
- Server port.
- secondary
Secrets List<String> - Secondary server secret.
- secondary
Server String - Secondary server name/IP.
- secrets List<String>
- Server secret.
- server String
- Server name/IP.
- system
Admin StringRadius Id - an identifier for the resource with format {{name}}.
- auth
Type string - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - name string
- Name.
- nas
Ip string - NAS IP address and called station ID.
- port number
- Server port.
- secondary
Secrets string[] - Secondary server secret.
- secondary
Server string - Secondary server name/IP.
- secrets string[]
- Server secret.
- server string
- Server name/IP.
- system
Admin stringRadius Id - an identifier for the resource with format {{name}}.
- auth_
type str - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - name str
- Name.
- nas_
ip str - NAS IP address and called station ID.
- port float
- Server port.
- secondary_
secrets Sequence[str] - Secondary server secret.
- secondary_
server str - Secondary server name/IP.
- secrets Sequence[str]
- Server secret.
- server str
- Server name/IP.
- system_
admin_ strradius_ id - an identifier for the resource with format {{name}}.
- auth
Type String - Authentication protocol. any - Use any supported authentication protocol. pap - PAP. chap - CHAP. mschap2 - MSCHAPv2. Valid values:
any
,pap
,chap
,mschap2
. - name String
- Name.
- nas
Ip String - NAS IP address and called station ID.
- port Number
- Server port.
- secondary
Secrets List<String> - Secondary server secret.
- secondary
Server String - Secondary server name/IP.
- secrets List<String>
- Server secret.
- server String
- Server name/IP.
- system
Admin StringRadius Id - an identifier for the resource with format {{name}}.
Import
System AdminRadius can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systemAdminRadius:SystemAdminRadius labelname {{name}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.