Post

create ACM certificate

create ACM certificate

https://medium.com/@Ahmed_Ansar/how-to-setup-aws-vpn-endpoint-8b15e78fd8b0

1
2
3
4
5
6
git clone https://github.com/OpenVPN/easy-rsa.git
cd easy-rsa/easyrsa3
./easyrsa init-pki
./easyrsa build-ca nopass
./easyrsa build-server-full server nopass
/easyrsa build-client-full client1.domain.tld nopass
1
2
3
4
aws acm import-certificate --certificate file://./pki/issued/server.crt --private-key file://./pki/private/server.key  --certificate-chain file://./pki/ca.crt --region eu-central-1

aws acm import-certificate --certificate file://./pki/issued/client1.domain.tld.crt --private-key file://./pki/private/client1.domain.tld.key  --certificate-chain file://./pki/ca.crt --region eu-central-1

This post is licensed under CC BY 4.0 by the author.