Add zip keys
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Kasper Juul Hermansen 2022-02-18 16:26:35 +01:00
parent e9671cbe81
commit 42a6110e3c
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
5 changed files with 25 additions and 2 deletions

View File

@ -11,8 +11,11 @@ steps:
from_secret: serverctl_access_key
SECRET_KEY:
from_secret: serverctl_secret_key
SSH_ZIP_KEY:
from_secret: serverctl_ssh_zip_key
commands:
- apk --update add curl
- apk --update add curl zip
- cd infrastructure && unzip-ssh-keys "$SSH_ZIP_KEY" && cd ..
- curl --silent --output terraform.zip "https://releases.hashicorp.com/terraform/1.1.6/terraform_1.1.6_linux_amd64.zip"
- unzip terraform.zip ; rm -f terraform.zip; chmod +x terraform
- mkdir -p ${HOME}/bin ; export PATH=${PATH}:${HOME}/bin; mv terraform ${HOME}/bin/
@ -20,4 +23,4 @@ steps:
- cd infrastructure/create-resources
- terraform init -backend-config="access_key=$ACCESS_KEY" -backend-config="secret_key=$SECRET_KEY"
- terraform validate
- terraform apply -auto-approve -var "hcloud_token=$HCLOUD_TOKEN"
- terraform apply -auto-approve -var "hcloud_token=$HCLOUD_TOKEN" -var "pvt_key='../ssh_keys/id_ed25519'" -var "pub_key='../ssh_keys/id_ed25519.pub'"

1
infrastructure/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
ssh_keys/

BIN
infrastructure/ssh_keys.zip Normal file

Binary file not shown.

View File

@ -0,0 +1,7 @@
#!/bin/sh
ZIP_KEY=$1
unzip -P "$ZIP_KEY" ssh_keys.zip
echo "unzip done!"

12
infrastructure/zip-ssh-keys.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
ZIP_KEY=$(openssl rand -hex 30)
mkdir -p ssh_keys/
cp -f ~/.ssh/id_ed25519* ssh_keys/
zip -r --password $ZIP_KEY ssh_keys.zip ssh_keys/
echo "zip done!"
echo "Zip key: $ZIP_KEY"