diff options
author | EuAndreh <eu@euandre.org> | 2019-05-28 00:12:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-05-28 00:12:19 -0300 |
commit | aa4d55b5a7c9ed8c6ca76d60cddcc3b8a47101d9 (patch) | |
tree | d9bdb5b6cd4b583742a780563de6ab9e8fcbbcdd | |
parent | TODOs.org (diff) | |
download | server-aa4d55b5a7c9ed8c6ca76d60cddcc3b8a47101d9.tar.gz server-aa4d55b5a7c9ed8c6ca76d60cddcc3b8a47101d9.tar.xz |
Rename ./secrets/id_rsa{.pub} -> ./secrets/vps_box{.pub}
-rwxr-xr-x | ci-setup.sh | 2 | ||||
-rw-r--r-- | secrets/vps_box (renamed from secrets/id_rsa) | bin | 3403 -> 3403 bytes | |||
-rw-r--r-- | secrets/vps_box.pub (renamed from secrets/id_rsa.pub) | bin | 763 -> 763 bytes | |||
-rw-r--r-- | ssh.conf | 2 | ||||
-rw-r--r-- | vps.tf | 2 |
5 files changed, 3 insertions, 3 deletions
diff --git a/ci-setup.sh b/ci-setup.sh index a5eaf65..a5d0c0d 100755 --- a/ci-setup.sh +++ b/ci-setup.sh @@ -13,7 +13,7 @@ popd echo "Done." # git smudge after git-crypt clears file permissions -chmod 600 ./secrets/id_rsa +chmod 600 ./secrets/vps_box cat .envrc >> ~/.buildenv source .envrc diff --git a/secrets/id_rsa b/secrets/vps_box Binary files differindex 8bd910b..8bd910b 100644 --- a/secrets/id_rsa +++ b/secrets/vps_box diff --git a/secrets/id_rsa.pub b/secrets/vps_box.pub Binary files differindex 1301181..1301181 100644 --- a/secrets/id_rsa.pub +++ b/secrets/vps_box.pub @@ -1,4 +1,4 @@ Host $TLD User root - IdentityFile $PWD/secrets/id_rsa + IdentityFile $PWD/secrets/vps_box StrictHostKeyChecking no @@ -22,7 +22,7 @@ resource "digitalocean_droplet" "vps" { connection { user = "root" type = "ssh" - private_key = "${file("${path.module}/secrets/id_rsa")}" + private_key = "${file("${path.module}/secrets/vps_box")}" timeout = "2m" } |