summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-02-03 16:49:13 +0000
committerGerrit Code Review <review@openstack.org>2016-02-03 16:49:13 +0000
commit57d138e84eca14249417977c0faafcd2130a3502 (patch)
tree2eafa134ce49aed8958c1772b966b00308d9606f
parent3c5f795324ec51eed29635e26a0768c589137aa8 (diff)
parentd9340d89887f1e01027d73b0076b577223c4b325 (diff)
downloadpycadf-57d138e84eca14249417977c0faafcd2130a3502.tar.gz
Merge "Enable cadf support for Heat"
-rw-r--r--doc/source/audit_maps.rst2
-rw-r--r--etc/pycadf/heat_api_audit_map.conf32
2 files changed, 34 insertions, 0 deletions
diff --git a/doc/source/audit_maps.rst b/doc/source/audit_maps.rst
index e567a4e..8cadb57 100644
--- a/doc/source/audit_maps.rst
+++ b/doc/source/audit_maps.rst
@@ -27,6 +27,7 @@ services. Currently, pyCADF supplies the following audit mapping files:
* `neutron_api_audit_map.conf`_
* `nova_api_audit_map.conf`_
* `trove_api_audit_map.conf`_
+* `heat_api_audit_map.conf`_
These files are hosted under the `etc/pycadf`_ directory of pyCADF. For more
information on how to use these mapping files, refer to the `Audit middleware`_
@@ -40,3 +41,4 @@ section of the `keystonemiddleware`_ project.
.. _`neutron_api_audit_map.conf`: https://github.com/openstack/pycadf/blob/master/etc/pycadf/neutron_api_audit_map.conf
.. _`nova_api_audit_map.conf`: https://github.com/openstack/pycadf/blob/master/etc/pycadf/nova_api_audit_map.conf
.. _`trove_api_audit_map.conf`: https://github.com/openstack/pycadf/blob/master/etc/pycadf/trove_api_audit_map.conf
+.. _`heat_api_audit_map.conf`: https://github.com/openstack/pycadf/blob/master/etc/pycadf/heat_api_audit_map.conf \ No newline at end of file
diff --git a/etc/pycadf/heat_api_audit_map.conf b/etc/pycadf/heat_api_audit_map.conf
new file mode 100644
index 0000000..8c0e8e7
--- /dev/null
+++ b/etc/pycadf/heat_api_audit_map.conf
@@ -0,0 +1,32 @@
+[DEFAULT]
+# default target endpoint type
+# should match the endpoint type defined in service catalog
+target_endpoint_type = None
+
+# possible end path of api requests
+[path_keywords]
+stacks = stack
+resources = resource
+preview = None
+detail = None
+abandon = None
+snapshots = snapshot
+restore = None
+outputs = output
+metadata = server
+signal = None
+events = event
+template = None
+template_versions = template_version
+functions = None
+validate = None
+resource_types = resource_type
+build_info = None
+actions = None
+software_configs = software_config
+software_deployments = software_deployment
+services = None
+
+# map endpoint type defined in service catalog to CADF typeURI
+[service_endpoints]
+orchestration = service/orchestration \ No newline at end of file