RadiusSettingsArgs

data class RadiusSettingsArgs(val authenticationProtocol: Output<String>? = null, val directoryId: Output<String>? = null, val displayLabel: Output<String>? = null, val radiusPort: Output<Int>? = null, val radiusRetries: Output<Int>? = null, val radiusServers: Output<List<String>>? = null, val radiusTimeout: Output<Int>? = null, val sharedSecret: Output<String>? = null, val useSameUsername: Output<Boolean>? = null) : ConvertibleToJava<RadiusSettingsArgs>

Manages a directory's multi-factor authentication (MFA) using a Remote Authentication Dial In User Service (RADIUS) server.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.directoryservice.RadiusSettings;
import com.pulumi.aws.directoryservice.RadiusSettingsArgs;
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 example = new RadiusSettings("example", RadiusSettingsArgs.builder()
.directoryId(aws_directory_service_directory.example().id())
.authenticationProtocol("PAP")
.displayLabel("example")
.radiusPort(1812)
.radiusRetries(4)
.radiusServers("10.0.1.5")
.radiusTimeout(1)
.sharedSecret("12345678")
.build());
}
}

Import

RADIUS settings can be imported using the directory ID, e.g.,

$ pulumi import aws:directoryservice/radiusSettings:RadiusSettings example d-926724cf57

Constructors

Link copied to clipboard
constructor(authenticationProtocol: Output<String>? = null, directoryId: Output<String>? = null, displayLabel: Output<String>? = null, radiusPort: Output<Int>? = null, radiusRetries: Output<Int>? = null, radiusServers: Output<List<String>>? = null, radiusTimeout: Output<Int>? = null, sharedSecret: Output<String>? = null, useSameUsername: Output<Boolean>? = null)

Properties

Link copied to clipboard
val authenticationProtocol: Output<String>? = null

The protocol specified for your RADIUS endpoints. Valid values: PAP, CHAP, MS-CHAPv1, MS-CHAPv2.

Link copied to clipboard
val directoryId: Output<String>? = null

The identifier of the directory for which you want to manager RADIUS settings.

Link copied to clipboard
val displayLabel: Output<String>? = null

Display label.

Link copied to clipboard
val radiusPort: Output<Int>? = null

The port that your RADIUS server is using for communications. Your self-managed network must allow inbound traffic over this port from the AWS Directory Service servers.

Link copied to clipboard
val radiusRetries: Output<Int>? = null

The maximum number of times that communication with the RADIUS server is attempted. Minimum value of 0. Maximum value of 10.

Link copied to clipboard
val radiusServers: Output<List<String>>? = null

An array of strings that contains the fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.

Link copied to clipboard
val radiusTimeout: Output<Int>? = null

The amount of time, in seconds, to wait for the RADIUS server to respond. Minimum value of 1. Maximum value of 50.

Link copied to clipboard
val sharedSecret: Output<String>? = null

Required for enabling RADIUS on the directory.

Link copied to clipboard
val useSameUsername: Output<Boolean>? = null

Not currently used.

Functions

Link copied to clipboard
open override fun toJava(): RadiusSettingsArgs