module configuration Returns: JSON/Dict module configuration
()
| 48 | |
| 49 | |
| 50 | def module_configuration(): |
| 51 | """ |
| 52 | module configuration |
| 53 | |
| 54 | Returns: |
| 55 | JSON/Dict module configuration |
| 56 | """ |
| 57 | return { |
| 58 | "username": "root", |
| 59 | "password": generate_token(16), |
| 60 | "extra_docker_options": |
| 61 | ["--volume {0}/tmp:/root/logs/".format(os.getcwd())], |
| 62 | "module_processor": ModuleProcessor() |
| 63 | } |
nothing calls this directly
no test coverage detected