Ansible Anonymizer
Project description
Library to clean up Ansible tasks from any Personally Identifiable Information (PII)
Free software: Apache Software License 2.0
Features
The library can be used to remove the PII from a multi level structure:
$ python3
>>> from ansible_anonymizer import anonymizer
>>> example = [{"name": "foo bar", "email": "my-email@address.com"}]
>>> anonymizer.anonymize_struct(example)
['- email: lucas27@example.com\n name: foo bar\n']
But you can also anonymize a block of text:
>>> from ansible_anonymizer import anonymizer
>>> some_text = """
... - name: a task
... a_module:
... secret: foobar
... """
>>> anonymizer.anonymize_text_block(some_text)
'\n- name: a task\n a_module:\n secret: {{ }}\n'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ansible-anonymizer-1.1.3.tar.gz
(12.6 kB
view hashes)
Built Distribution
Close
Hashes for ansible_anonymizer-1.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7dd18772c7e54464e7a510c99cf18b877abd639b9011a88b21a616bef0cf94da |
|
MD5 | d40a1977f56892afb478bac95b2c4556 |
|
BLAKE2b-256 | e40d8d8e4246a55ab71699cf8c290104ecd717d206af592d18c1fb34b5346470 |