According to AWS documentation, CloudFront only supports 2048 bits signed certificates.
At the moment, 4096 is a hard-coded value in the code and should be a variable associated to each domain. The default value should be 2048 since it maximises compatibility with AWS services.
It shouldn't be an issue for existing private keys as long as reuse_key: true, which is the default.
According to AWS documentation, CloudFront only supports 2048 bits signed certificates. At the moment,
4096
is a hard-coded value in the code and should be a variable associated to each domain. The default value should be2048
since it maximises compatibility with AWS services. It shouldn't be an issue for existing private keys as long asreuse_key: true
, which is the default.This is blocking aureq#11 from being implemented.