https://github.com/cdvel/ansible-jump-start
🔧 Template for new Ansible projects
https://github.com/cdvel/ansible-jump-start
Last synced: 3 months ago
JSON representation
🔧 Template for new Ansible projects
- Host: GitHub
- URL: https://github.com/cdvel/ansible-jump-start
- Owner: cdvel
- Created: 2016-09-05T04:11:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-05T04:13:11.000Z (over 9 years ago)
- Last Synced: 2025-08-14T07:44:21.802Z (10 months ago)
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
#Ansible Jump Start
A template for new Ansible projects.
##File Structure
```
├── Readme.md
├── ansible.cfg
├── host_vars
├── inventories
│  ├── hosts
│  ├── production
│  │  └── group_vars
│  └── staging
│  └── group_vars
├── playbooks
│  ├── common.yml
│  └── roles
│  └── common
│  ├── defaults
│  │  └── main.yml
│  ├── files
│  │  └── main.yml
│  ├── handlers
│  │  └── main.yml
│  ├── meta
│  │  └── main.yml
│  ├── tasks
│  │  └── main.yml
│  ├── templates
│  │  └── main.conf.j2
│  └── vars
│  └── main.yml
├── production
├── requirements.yml
├── roles.yml
└── staging
```