diff --git a/openappstack/ansible.py b/openappstack/ansible.py
index 01702e509452b3c8743ef650eb7c326a29e5d85f..f9f5c2d445db06b2cd3524bae8917ebbbb05508f 100644
--- a/openappstack/ansible.py
+++ b/openappstack/ansible.py
@@ -38,7 +38,7 @@ def run_ansible(clus, playbook, ansible_params=None):
         ['-e', 'cluster_dir=' + clus.cluster_dir]
 
     ansible_playbook_command += \
-        ['-i', clus.inventory_file, '-e', '@' + clus.settings_file, playbook]
+        ['-i', clus.inventory_file, playbook]
 
     log.info('Running "%s" in ansible directory "%s"',
              ansible_playbook_command,
diff --git a/openappstack/cluster.py b/openappstack/cluster.py
index a78bbaa5ba1430a0d0c32c145a1a57afabae1b08..29edb9d29fd99304680e849bac59af764498308a 100644
--- a/openappstack/cluster.py
+++ b/openappstack/cluster.py
@@ -76,11 +76,12 @@ class Cluster:
         if not self.data_loaded:
             with open(self.inventory_file, 'r') as stream:
                 inventory = yaml.safe_load(stream)
+                print(inventory)
                 # Work with the master node from the inventory
                 self.hostname = inventory['all']['children']['master']['hosts']
                 self.domain = self.hostname
                 self.ip_address = \
-                        inventory['hosts'][self.hostname]['ansible_host']
+                        inventory['all']['hosts'][self.hostname]['ansible_host']
             log.debug("""Read data from inventory:
                 ip address: %s
                 domain: %s