Проблема с созданием ключа SSL через ansible - PullRequest
0 голосов
/ 30 апреля 2019

Пожалуйста, помогите понять, почему эта задача не работает для меня?

---
- name: Generation of SSL key
  openssl_privatekey:
    path: "/opt/mongodbkey"
    size: 741
    force: true

Моя ошибка:

ERROR! no action detected in task. This often indicates a misspelled module name, or incorrect module path.

The error appears to have been in '/root/mongodb/roles/mongodb/tasks/ssl.yml': line 2, column 3, but may
be elsewhere in the file depending on the exact syntax problem.

The offending line appears to be:

---
- name: Generation of SSL key
  ^ here

Еще один быстрый вопрос.Это правильный метод для этой ручной команды?

openssl rand -base64 741 > /opt/mongodbkey
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...