Created
February 7, 2017 04:23
-
-
Save hirokazumiyaji/512e90a625fb2e44706b50ccb726bc6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: provision dev local | |
hosts: dev | |
connection: local | |
roles: | |
- common | |
- redis | |
- python | |
- name: provision dev | |
hosts: dev | |
roles: | |
- common | |
- redis | |
- python | |
- name: provision prod local | |
hosts: prod | |
connection: local | |
roles: | |
- common | |
- python | |
- name: provision prod | |
hosts: prod | |
roles: | |
- common | |
- python |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment