Skip to content

Commit

Permalink
Add information about insecure keypairs for development instances.
Browse files Browse the repository at this point in the history
  • Loading branch information
lwesterhof committed Nov 19, 2019
1 parent 1410854 commit ab26ac4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions environments/development/allinone/group_vars/allinone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ yoda_public_host: combined.yoda.test # Yoda public host
yoda_public_fqdn: public.yoda.test # Yoda public fully qualified domain name (FQDN)

# Yoda public upload private key (base64 encoded)
# These keys are the "insecure" public/private keypair we offer for use in development instances.
# If you use this instance for anything other than development, you should create your own keypair.
# ssh-keygen -t ed25519 -> base64
upload_priv_key: |
LS0tLS1CRUdJTiBPUEVOU1NIIFBSSVZBVEUgS0VZLS0tLS0KYjNCbGJuTnphQzFyWlhrdGRqRUFB
Expand Down
2 changes: 2 additions & 0 deletions environments/development/full/group_vars/full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ yoda_public_host: public.yoda.test # Yoda public host
yoda_public_fqdn: public.yoda.test # Yoda public fully qualified domain name (FQDN)

# Yoda public upload private key (base64 encoded)
# These keys are the "insecure" public/private keypair we offer for use in development instances.
# If you use this instance for anything other than development, you should create your own keypair.
# ssh-keygen -t ed25519 -> base64
upload_priv_key: |
LS0tLS1CRUdJTiBPUEVOU1NIIFBSSVZBVEUgS0VZLS0tLS0KYjNCbGJuTnphQzFyWlhrdGRqRUFB
Expand Down
10 changes: 10 additions & 0 deletions vagrant/ssh/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Insecure Keypair

These keys are the "insecure" public/private keypair we offer to
[base box creators](https://www.vagrantup.com/docs/boxes/base.html) for use in their base boxes so that
vagrant installations can automatically SSH into the boxes.

If you're working with a team or company or with a custom box and
you want more secure SSH, you should create your own keypair
and configure the private key in the Vagrantfile with
`config.ssh.private_key_path`

0 comments on commit ab26ac4

Please sign in to comment.