Which solution will meet these requirements with the LEAST management overhead?
Create an Amazon Elastic File System (Amazon EFS) file share. Create an Auto Scaling group that extends across three Availability Zones and maintains a minimum size of three instances. Implement a user data script to install the application, join the instance to the AD domain, and mount the EFS file share.
Create a new AMI from the current EC2 Instance that is running. Create an Amazon FSx for Lustre file system. Create an Auto Scaling group that extends across three Availability Zones and maintains a minimum size of three instances. Implement a user data script to join the instance to the AD domain and mount the FSx for Lustre file system.
Create an Amazon FSx for Windows File Server file system. Create an Auto Scaling group that extends across three Availability Zones and maintains a minimum size of three instances. Implement a user data script to install the application and mount the FSx for Windows File Server file system. Perform a seamless domain join to join the instance to the AD domain.
Create a new AMI from the current EC2 instance that is running. Create an Amazon Elastic File System (Amazon EFS) file system. Create an Auto Scaling group that extends across three Availability Zones and maintains a minimum size of three Instances. Perform a seamless domain join to join the instance to the AD domain.
Explanations:
Amazon EFS is a good choice for shared file storage across instances, but it does not provide full support for Windows ACLs, which are required for controlling access to the file contents.
Amazon FSx for Lustre is designed for high-performance workloads, typically used with compute-intensive applications. It is not suitable for the use case described, which requires Windows ACLs and file consistency across instances.
Amazon FSx for Windows File Server supports Windows ACLs, is fully integrated with Active Directory for domain joining, and provides shared storage that can be easily mounted across multiple EC2 instances. This is the optimal choice for high availability and fault tolerance.
Amazon EFS does not support Windows ACLs, which are required in this scenario. Additionally, Amazon EFS is not as tightly integrated with Active Directory for seamless domain joining as FSx for Windows File Server.