Skip to content

Commit

Permalink
provisioner: Note how to load key in SSH agent
Browse files Browse the repository at this point in the history
References: #12
  • Loading branch information
bkircher committed May 8, 2021
1 parent 2c20730 commit f18dd78
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion provisioner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@ As usual, set `GRIDSCALE_TOKEN` and `GRIDSCALE_UUID` environment variables to th
$ export GRIDSCALE_TOKEN=your-api-token
$ export GRIDSCALE_UUID=your-user-id

Open `server.tf` and paste your SSH public key where it says `"INSERT KEY"`. Then do
Open `server.tf` and paste your SSH public key where it says `"INSERT KEY"`. Please make also sure that you have the key loaded in your SSH agent, e.g., by adding it with

$ ssh-add ~/.ssh/your-key

You can check if the key is loaded with

$ ssh-add -L

Then do

$ terraform init

Expand Down

0 comments on commit f18dd78

Please sign in to comment.