Skip to content

Instantly share code, notes, and snippets.

@jruels
Created December 14, 2013 20:47
Show Gist options
  • Save jruels/7964733 to your computer and use it in GitHub Desktop.
Save jruels/7964733 to your computer and use it in GitHub Desktop.
Ansible playbook and template
fatal: [ansibledb1] => One or more undefined variables: 'dict object' has no attribute 'ansible_eth0'
#variable for app server's IP from facts
app_ip: {{hostvars['ansibleweb1'].ansible_eth0.ipv4.address}}
#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