From 0cfc796d22a41f81a0988120c45f65fe7a2dc1a8 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 16 Feb 2023 15:35:26 +0000 Subject: [PATCH 1/2] chore: fixes video in AWS quickstart --- docs/quickstart/aws.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/quickstart/aws.md b/docs/quickstart/aws.md index 7e3aef8a7bc11..48be4746778ed 100644 --- a/docs/quickstart/aws.md +++ b/docs/quickstart/aws.md @@ -23,7 +23,7 @@ Be sure to add a keypair so that you can connect over SSH to further [configure After launching the instance, wait 30 seconds and navigate to the public IPv4 address. You should be redirected to a public tunnel URL. @@ -37,6 +37,8 @@ Coder is primarily configured by server-side flags and environment variables. Gi ```sh ssh ubuntu@ +sudo vim /etc/coder.d/coder.env # edit config +sudo service coder restart # restart Coder ``` ## Give developers EC2 workspaces (optional) From 81e5018abc4220c888fa627831ed7cc936fe5672 Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 16 Feb 2023 15:52:27 +0000 Subject: [PATCH 2/2] minor language tweaks --- docs/quickstart/aws.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart/aws.md b/docs/quickstart/aws.md index 48be4746778ed..3b0d7f7512504 100644 --- a/docs/quickstart/aws.md +++ b/docs/quickstart/aws.md @@ -16,7 +16,7 @@ Be sure to keep the default firewall (SecurityGroup) options checked so you can ![AWS Security Groups](../images/quickstart/aws/security-groups.png) -We recommend at least 4 cores and 16 GB memory if you plan on provisioning Docker containers as workspaces on this EC2 instance. Keep in mind this quickstart is intended for proof-of-concept deployments and you should adjust your infrastructure when preparing for production use. +We recommend keeping the default instance type (`t2.xlarge`, 4 cores and 16 GB memory) if you plan on provisioning Docker containers as workspaces on this EC2 instance. Keep in mind this quickstart is intended for proof-of-concept deployments and you should adjust your infrastructure when preparing for production use. See: [Scaling Coder](../admin/scale.md) Be sure to add a keypair so that you can connect over SSH to further [configure Coder](../admin/configure.md).