Created
March 4, 2016 05:12
-
-
Save jruels/e95ccf92176b7b0008e2 to your computer and use it in GitHub Desktop.
Ansible group_vars server role
This file contains 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
TASK [application : Add lbs servers ips to hosts file] ************************* | |
[DEPRECATION WARNING]: Skipping task due to undefined attribute, in the future | |
this will be a fatal error.. This feature will be removed in a future release. | |
Deprecation warnings can be disabled by setting deprecation_warnings=False in | |
ansible.cfg. | |
TASK [application : create a database for wordpress] *************************** | |
fatal: [lb01]: FAILED! => {"failed": true, "msg": "ERROR! The conditional check 'server_role == 'db'' failed. The error was: ERROR! error while evaluating conditional (server_role == 'db'): ERROR! 'server_role' is undefined\n\nThe error appears to have been in '/Users/jruels/Projects/install-wordpress-ansible/roles/application/tasks/main.yml': line 6, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n## database tasks\n- include: 02-create_databases.yml\n ^ here\n"} |
This file contains 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: print all server names | |
debug: msg={{ item }} | |
with_items: groups['lbs'] |
This file contains 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
[apps] | |
app01 | |
app02 | |
[dbs] | |
db01 | |
[lbs] | |
lb01 | |
[apps:vars] | |
server_role=app | |
[dbs:vars] | |
server_role=db | |
[lbs:vars] | |
server_role=lb | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment