@cryptotaxi247 / infra-1 / commits / 2c1583d0

document the infra client setup (#67)

zimbatm committed Nov 23, 2018 at 19:34 UTC 2c1583d0cdb17c8745829d83d7b2b423374b83b0
1 file changed +19
docs/client-setup.md new
+19
@@ -0,0 +1,19 @@
1 +# Client setup
2 +
3 +This document contains the machine setup of the infrastructure member.
4 +
5 +## Dependencies
6 +
7 +Install Nix obviously :)
8 +
9 +## SSH configuration
10 +
11 +Add the following to the `~/.ssh/config` file:
12 +
13 +```
14 +Host bastion.nixos.org
15 + User deploy
16 + SendEnv FASTLY_API_KEY AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY
17 + ForwardAgent yes
18 + IdentityFile ~/.ssh/nixos_rsa
19 +```