https://github.com/jysperm/playbooks
Infrastructure as Code of my servers, NAS and router
https://github.com/jysperm/playbooks
ansible
Last synced: about 1 year ago
JSON representation
Infrastructure as Code of my servers, NAS and router
- Host: GitHub
- URL: https://github.com/jysperm/playbooks
- Owner: jysperm
- Created: 2015-09-30T03:07:43.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-12-10T07:22:41.000Z (over 1 year ago)
- Last Synced: 2025-04-05T05:41:31.439Z (about 1 year ago)
- Topics: ansible
- Language: HTML
- Homepage:
- Size: 242 KB
- Stars: 21
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```