Given this AWS CLI command to create an EKS cluster:
aws eks create-cluster --name test-cluster --role-arn arn:aws:iam::123456789012:role/EKSRole --resources-vpc-config subnetIds=subnet-11111111,subnet-22222222,securityGroupIds=sg-12345678
What will happen after running this command?
AThe command will fail due to incorrect subnet ID format
BThe command will fail because security groups cannot be specified during cluster creation
CThe cluster will be created but only in one subnet ignoring the second subnet
DThe cluster <code>test-cluster</code> will be created using the specified subnets and security group