Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guergeiro/iac
IaC for my Linux/Unix machines
https://github.com/guergeiro/iac
Last synced: 9 days ago
JSON representation
IaC for my Linux/Unix machines
- Host: GitHub
- URL: https://github.com/guergeiro/iac
- Owner: Guergeiro
- License: gpl-3.0
- Created: 2022-07-01T21:55:00.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-22T19:29:26.000Z (8 months ago)
- Last Synced: 2024-03-22T20:29:08.122Z (8 months ago)
- Size: 98.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# iac
## Table of Contents
- [About and Disclaimer](#about-and-disclaimer)
- [Steps](#steps)
- [Vault Commands](#vault-commands)
- [Author](#author)
- [License](#license)## About and Disclaimer
This repository is merely for personal use. It's not private since someone might
find it useful and, even for me, it saves the pain of login while in a strangers
computer.The purpose of this reposity is when I start a freshly Linux image, I can
configure it with all appropriate applications and UI. If you want to use it, do
it at your own risk.## Steps
_You may [change your user](./group_vars/all/vars.yml) for your specific needs._
1. Install [Python3](https://www.python.org/)
```bash
sudo apt-get install python3 python3-pip git -y
```2. Install Ansible
```bash --target
python3 -m pip install --user ansible-core
```3. Navigate to a place of your choice
```bash
cd $HOME/Documents/guergeiro
```4. Clone the my Infrastructure as Code
[repository](https://github.com/guergeiro/iac)```bash
git clone https://github.com/Guergeiro/iac.git
```5. Install playbook dependencies
```bash
ansible-galaxy install -r requirements.yml --force
```6. Run the playbook you want
```bash
ansible-playbook linux-desktop.yml --ask-vault-password --ask-become-pass \
--vault-id @prompt
``````bash
ansible-playbook linux-wsl.yml --ask-vault-password --ask-become-pass \
--vault-id @prompt
``````bash
ansible-playbook lisbon.yml --ask-vault-password --ask-become-pass \
--vault-id @prompt
``````bash
ansible-playbook viseu.yml --ask-vault-password --ask-become-pass \
--vault-id @prompt
``````bash
ansible-playbook coolify.yml --ask-vault-password --ask-become-pass \
--vault-id @prompt
```## Vault Commands
_More info
[here](https://www.golinuxcloud.com/ansible-vault-example-encrypt-string-playbook/)._- Create encrypted files
```bash
ansible-vault create secret.yml
```- Edit encrypted files
```bash
ansible-vault edit secret.yml
```- Encrypt existing files
```bash
ansible-vault encrypt file1.yml file2.yml file3.yml
```- Decrypt existing file
```bash
ansible-vault decrypt file1.yml
```- Change password of encrypted file
```bash
ansible-vault rekey encrypted_file.yml
```- Encrypt string
```bash
ansible-vault encrypt_string
```- Decrypt string
```bash
cat file_with_string_no_tabs | ansible-vault decrypt
```## Author
Created by [Breno Salles](https://brenosalles.com).
## License
This repository is licensed under [GPL-3.0](./LICENSE).