Merge "Add states for aodhv2"
diff --git a/aodh/upgrade/verify/_api.sls b/aodh/upgrade/verify/_api.sls
index e34edf5..b8c9bbc 100644
--- a/aodh/upgrade/verify/_api.sls
+++ b/aodh/upgrade/verify/_api.sls
@@ -1,7 +1,16 @@
+{%- from "aodh/map.jinja" import server with context %}
 
 aodh_upgrade_verify_api:
   test.show_notification:
     - text: "Running aodh.upgrade.verify.api"
 
-# TODO: Implement api checks when aodh salt
-# modules are implemented
+#TODO add states checks when they are available for Aodh
+{%- if server.get('role', 'primary') == 'primary' %}
+
+aodhv2_alarm_list:
+  module.run:
+    - name: aodhv2.alarm_list
+    - kwargs:
+        cloud_name: admin_identity
+
+{%- endif %}