module configuration Returns: JSON/Dict module configuration
()
| 51 | |
| 52 | |
| 53 | def module_configuration(): |
| 54 | """ |
| 55 | module configuration |
| 56 | |
| 57 | Returns: |
| 58 | JSON/Dict module configuration |
| 59 | """ |
| 60 | return { |
| 61 | "username": "root", |
| 62 | "password": "123456", |
| 63 | "extra_docker_options": ["--volume {0}/tmp/ohp_ssh_weak_container:/root:z".format(os.getcwd())], |
| 64 | "module_processor": ModuleProcessor() |
| 65 | } |
no test coverage detected