Skip to content

Commit 4e70ad9

Browse files
committed
bug: fix typo in module name
This was missed in a previous PR. It was caused by a find and replace.
1 parent a9c1e49 commit 4e70ad9

File tree

1 file changed

+2
-2
lines changed
  • chatops_deployment/ansible/roles/ssl_certificates/tasks

1 file changed

+2
-2
lines changed

chatops_deployment/ansible/roles/ssl_certificates/tasks/ssl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
- name: Get key info
3-
community.crypto.openssl_ssl_certificates_privatekey_info:
3+
community.crypto.openssl_privatekey_info:
44
path: "./{{ env }}_ssl/{{ service }}.key"
55
register: ssl_certificates_privatekey_info
66
ignore_errors: true
77

88
- name: Get certificate info
9-
community.crypto.x509_ssl_certificates_certificate_info:
9+
community.crypto.x509_certificate_info:
1010
path: "./{{ env }}_ssl/{{ service }}.crt"
1111
register: ssl_certificates_certificate_info
1212
ignore_errors: true

0 commit comments

Comments
 (0)