Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jysperm/playbooks

Infrastructure as Code of my servers, NAS and router
https://github.com/jysperm/playbooks

ansible

Last synced: about 2 months ago
JSON representation

Infrastructure as Code of my servers, NAS and router

Awesome Lists containing this project

README

        

# Playbooks
Infrastructure as Code of my servers, NAS and router. Currently using Ansible.

## Import SSH Key

```
mkdir -m 700 ~/.ssh
curl https://github.com/jysperm.keys >> ~/.ssh/authorized_keys
chown 600 ~/.ssh/authorized_keys
```

## Encrypted files

Encrypt:

```
gpg -a -r jysperm --encrypt secrets.yml
```

Decrypt:

```
gpg --decrypt secrets.yml.asc > secrets.yml
```