Created
December 14, 2013 20:47
-
-
Save jruels/7964733 to your computer and use it in GitHub Desktop.
Ansible playbook and template
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
fatal: [ansibledb1] => One or more undefined variables: 'dict object' has no attribute 'ansible_eth0' |
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
#variable for app server's IP from facts | |
app_ip: {{hostvars['ansibleweb1'].ansible_eth0.ipv4.address}} | |
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
#Play to create user and grant permissions. | |
- name: Create Magento database user | |
mysql_user: name={{ mag_db_user }} password={{ mag_db_password }} priv={{ mag_db_name }}.*:ALL host={{ app_ip }} state=present |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment