Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jysperm/playbooks
- Owner: jysperm
- Created: 2015-09-30T03:07:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-14T07:51:22.000Z (8 months ago)
- Last Synced: 2024-05-14T08:36:28.866Z (8 months ago)
- Topics: ansible
- Language: HTML
- Homepage:
- Size: 201 KB
- Stars: 21
- Watchers: 3
- Forks: 3
- Open Issues: 5
-
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
```