RadiusSettings

class RadiusSettings : KotlinCustomResource

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

Properties

Link copied to clipboard

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

Link copied to clipboard
val directoryId: Output<String>

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

Link copied to clipboard
val displayLabel: Output<String>

Display label.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val radiusPort: Output<Int>

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>

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>>

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>

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>

Required for enabling RADIUS on the directory.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val useSameUsername: Output<Boolean>?

Not currently used.