Fixed several typos and tab issues in sync_controller_networks
authorSapan Bhatia <sapanb@cs.princeton.edu>
Mon, 22 Dec 2014 06:43:32 +0000 (01:43 -0500)
committerSapan Bhatia <sapanb@cs.princeton.edu>
Mon, 22 Dec 2014 06:43:32 +0000 (01:43 -0500)
planetstack/openstack_observer/steps/sync_controller_networks.yaml

index 4f2daf4..c85ec55 100644 (file)
@@ -3,28 +3,27 @@
   connection: local 
   tasks:
   - quantum_network:
-       auth_url: {{ endpoint }} 
-       username: {{ admin_user }}
-       tenant_name: {{ tenant_name }}
-       password: {{ admin_password }}
-       name: {{ name }}
-       {% if delete %}
-       state: absent
-       {% else %}
-       state: present
-       {% endif %}
-        
+        auth_url={{ endpoint }} 
+        login_username={{ admin_user }}
+        tenant_name={{ tenant_name }}
+        login_password={{ admin_password }}
+        name={{ name }}
+        {% if delete %}
+        state=absent
+        {% else %}
+        state=present
+        {% endif %}
         shared: true
   - quantum_subnet:
-       auth_url: {{ endpoint }} 
-       username: {{ admin_user }}
-       tenant_name: {{ tenant_name }}
-       password: {{ admin_password }}
-       name={{ subnet_name }} 
+        auth_url={{ endpoint }} 
+        login_username={{ admin_user }}
+        tenant_name={{ tenant_name }}
+        login_password={{ admin_password }}
+        name={{ subnet_name }} 
         network_name={{ name }} 
-       {% if delete %}
-       state: absent
-       {% else %}
-       state=present 
-       cidr = {{ cidr }}
-       {% endif %}
+        {% if delete %}
+        state=absent
+        {% else %}
+        state=present 
+        cidr = {{ cidr }}
+        {% endif %}