How to create EFS in Multi-AZ with Terraform – Magento
I have launched two EC2 instances in two availability zones and I need to mount the EFS in both the instances using Terraform. resource "aws_efs_file_system" "magento-efs" { creation_token = "efs-demo" performance_mode = "generalPurpose" throughput_mode = "bursting" encrypted = "true" tags…