アプリの名前は、「カスタム ドメイン」、つまり mytvm.elasticbeanstalk.com にすることができます。
Elastic Beanstalk アプリケーションでロードバランサーを使用している場合は、こちらの手順を使用し、openssl を使用して独自の証明書を作成できます。openssl と Elastic Beanstalk コマンド ライン インターフェイスをインストールしたら、ドメイン名を「mytvm.elasticbeanstalk.com」と入力して、手順に従うことができます。
次のコマンドを使用します。
C:\>openssl genrsa 1024 > privatekey.pem
Loading 'screen' into random state - done
Generating RSA private key, 1024 bit long modulus....
C:\>openssl req -new -key privatekey.pem -out csr.pem
Loading 'screen' into random state - done
You are about to be asked to enter information that will be incorporated....
Country Name (2 letter code) [AU]:us
State or Province Name (full name) [Some-State]:yourstate
Locality Name (eg, city) []:cityname
Organization Name (eg, company) [Internet Widgits Pty Ltd]:youname
Organizational Unit Name (eg, section) []: your
Common Name (e.g. server FQDN or YOUR name) []:**mytvm.elasticbeanstalk.com**
...
C:\>openssl x509 -req -days 365 -in csr.pem -signkey privatekey.pem -out server.crt
C:\>iam-servercertupload -b server.crt -k privatekey.pem -s server -v
次に、443 を使用するように設定を変更します。