Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3768836
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/_modules/convert.py b/_modules/convert.py
new file mode 100644
index 0000000..d55800a
--- /dev/null
+++ b/_modules/convert.py
@@ -0,0 +1,36 @@
+# -*- coding: utf-8 -*-
+
+# -------------------------------------------------------------
+# Salt — Convert execution module
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# Project: Nasqueron
+# Created: 2018-09-08
+# Description: Functions related to data format conversions
+# License: BSD-2-Clause
+# -------------------------------------------------------------
+
+
+import json
+
+
+def to_json_from_pillar_key(key):
+ '''
+ A function to output a pillar key in JSON.
+
+ CLI Example::
+
+ salt-call --local convert.to_json "Hello world"
+ '''
+ data = __pillar__.get(key, {})
+ return to_json(data)
+
+
+def to_json(data):
+ '''
+ A function to convert data to JSON.
+
+ CLI Example::
+
+ salt-call --local convert.to_json "Hello world"
+ '''
+ return json.dumps(data, indent=4, sort_keys=True)
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Mon, Nov 25, 10:52 (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2260034
Default Alt Text
(1 KB)
Attached To
Mode
rOPS Nasqueron Operations
Attached
Detach File
Event Timeline
Log In to Comment