Pessoal, já tenho um certificado no servidor (aws lightsail) para um domínio .com.br, agora estamos comprando também o domínio .com, ja configurei o dns e tudo certo, como proceder para adicionar o certificado nesse novo domínio .com
If you are going to use both names within the same server config (serving the exact same content), then it is best to use only one cert.
That means all names should be on that one cert.
You can expand the current cert with the new name(s).
Or you can get a new cert with all names on it and then delete the previous cert.
And then use the single cert for all the names within that one server config.
If you are not going to use both names within the same server config (serving different content to each), then they are unrelated and should be treated individually.
You would simply get a new cert for the new name(s) and use that cert in the new server config.
If you used certbot, you can use certbot to expand it like this: certbot --expand -d one.domain -d two.domain -d three.domain -d four.domain
It should match (at least) one of those names to an existing cert and then use all names to expand it.
[meaning it will keep the same cert name and the same file locations]