vlan sample working
diff --git a/xos/observers/vcpe/steps/sync_vcpetenant.yaml b/xos/observers/vcpe/steps/sync_vcpetenant.yaml
index 99ab4bb..60394eb 100644
--- a/xos/observers/vcpe/steps/sync_vcpetenant.yaml
+++ b/xos/observers/vcpe/steps/sync_vcpetenant.yaml
@@ -8,6 +8,10 @@
       dnsdemux_ip: {{ dnsdemux_ip }}
       firewall_enable: {{ firewall_enable }}
       url_filter_enable: {{ url_filter_enable }}
+      vlan_ids:
+        {% for vlan_id in vlan_ids %}
+        - {{ vlan_id }}
+        {% endfor %}
   tasks:
     - name: make sure /etc/dnsmasq.d exists
       file: path=/etc/dnsmasq.d state=directory owner=root group=root
diff --git a/xos/observers/vcpe/templates/vlan_sample.j2 b/xos/observers/vcpe/templates/vlan_sample.j2
index 48cdce8..a26c840 100644
--- a/xos/observers/vcpe/templates/vlan_sample.j2
+++ b/xos/observers/vcpe/templates/vlan_sample.j2
@@ -1 +1,5 @@
-placeholder
+# below is a list of all vlan_ids associated with this vcpe
+
+{% for vlan_id in vlan_ids %}
+{{ vlan_id }}
+{% endfor %}