Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suddi/playbooks
Personal Ansible playbooks to provision resources and deploy on AWS, GCP and Heroku
https://github.com/suddi/playbooks
ansible ansible-playbooks aws cloudformation cloudformation-stacks cloudformation-templates deployment-manager gcp heroku ias infrastructure-as-code infrastructure-management npm playbooks pypi
Last synced: 17 days ago
JSON representation
Personal Ansible playbooks to provision resources and deploy on AWS, GCP and Heroku
- Host: GitHub
- URL: https://github.com/suddi/playbooks
- Owner: suddi
- License: apache-2.0
- Created: 2017-10-02T05:49:27.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-16T06:59:39.000Z (4 months ago)
- Last Synced: 2024-07-16T09:18:05.742Z (4 months ago)
- Topics: ansible, ansible-playbooks, aws, cloudformation, cloudformation-stacks, cloudformation-templates, deployment-manager, gcp, heroku, ias, infrastructure-as-code, infrastructure-management, npm, playbooks, pypi
- Language: Python
- Homepage:
- Size: 563 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# playbooks
[![CircleCI](https://circleci.com/gh/suddi/playbooks.svg?style=svg)](https://circleci.com/gh/suddi/playbooks)
[![codecov](https://codecov.io/gh/suddi/playbooks/branch/master/graph/badge.svg)](https://codecov.io/gh/suddi/playbooks)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/2266d25d464344c6a3a6eefdbc2934b5)](https://www.codacy.com/app/Suddi/playbooks)
[![David](https://img.shields.io/david/suddi/playbooks.svg)](https://david-dm.org/suddi/playbooks)
[![David](https://img.shields.io/david/dev/suddi/playbooks.svg)](https://david-dm.org/suddi/playbooks?type=dev)
[![license](https://img.shields.io/github/license/suddi/playbooks.svg)](https://github.com/suddi/playbooks/blob/master/LICENSE)[![codecov](https://codecov.io/gh/suddi/playbooks/branch/master/graphs/commits.svg)](https://codecov.io/gh/suddi/playbooks)
Ansible infrastructure-as-code playbooks for publishing packages to NPM, PyPy, setting up servers and deployment to AWS, GCP and Heroku
## Installation
### Prerequisities
- python
- pip
- nvm
- npm
- node````
pip install --requirement requirements.txt --requirement test_requirements.txtnpm install
````### Usage
````
ansible-playbook
````#### Sensitive files handling
`ansible-vault` and the true `inventory.ini` files are maintained in S3
To download sensitive-files:
````
ansible-playbook plays/sensitive_files/download.yml
````To upload sensitive-files:
````
ansible-playbook plays/sensitive_files/upload.yml
````#### Protecting `inventory.ini`
In order to ensure that changes to `inventory.ini` does not get accidently committed:
````
git update-index --assume-unchanged inventory.ini
````If you need to revert this action:
````
git update-index --no-assume-unchanged inventory.ini
````