You must be logged in to view saved presets
Sets up an FSx Windows File System with a self-managed Microsoft Active Directory, including DNS settings, domain name, and admin credentials.
resource "aws_fsx_windows_file_system" "example" {
kms_key_id = "aws_kms_key.example.arn"
self_managed_active_directory {
dns_ips = ["10.0.0.111", "10.0.0.222"]
domain_name = "corp.example.com"
password = "avoid-plaintext-passwords"
username = "Admin"
}
storage_capacity = 300
subnet_ids = ["aws_subnet.example.id"]
throughput_capacity = 1024
}