Kibana is not starting using Ansible service/command/shell module

I am trying to start Ansible script to start Kibana service. I tried with service, command, shell and even with raw module. The task is showing Kibana is started while executing the playbook. But Kibana is not starting actually.

The stop command for kibana service is working. But not working for start. In Kibana logs, it is showing the service stop logs, but for start nothing is showing.

Please see the codes that I am using:

   - name: Starting kibana
     shell: /usr/sbin/service kibana start -k
     become: yes
     become_user: root

Please see the log details:

changed: [_IP_] => {
   "changed": true,
   "cmd": "/usr/sbin/service kibana start -k",
   "delta": "0:00:00.056557",
   "end": "2019-10-16 06:36:21.329033",
   "invocation": {
       "module_args": {
           "_raw_params": "/usr/sbin/service kibana start -k",
           "_uses_shell": true,
           "chdir": null,
           "creates": null,
           "executable": null,
           "removes": null,
            "stdin": null,
            "warn": true
        }
    },
    "rc": 0,
    "start": "2019-10-16 06:36:21.272476",
    "stderr": "",
    "stderr_lines": [],
    "stdout": "kibana started",
    "stdout_lines": [
        "kibana started"
    ],
    "warnings": [
        "Consider using service module rather than running service"
    ]
}

Please find the system details below:
Ansible Version: 2.4.2.0
OS Version: CentOS Linux release 7.5.1804 (Core) [Both ansible and target machine]