You can quickly build a vscode server in the AWS with this terraform project
Note
You need to install terraform and configure AWS IAM
Init the terraform project
terraform initCheck the terraform deploy plan
terraform planStart to deploy the vscode server in the AWS cloud
terraform apply -var="ssh_public_key_filepath=~/.ssh/code_server_rsa.pub"If you have a hosted domain in Route53, you could deploy the server with domain
terraform apply -var="ssh_public_key_filepath=~/.ssh/code_server_rsa.pub" -var="domain_zone_id=YOUR_DOMAIN_ZONE_ID" -var="domain_name=YOUR_PREFER_DOMAIN_NAME"