1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

[stable-1] Fix wrong FQCNs (#3576)

* Use correct FQCN. (#3573)

(cherry picked from commit c3813d4533)

* Add more fixes.
This commit is contained in:
Felix Fontein 2021-10-17 18:26:08 +02:00 committed by GitHub
parent 54ee93faec
commit 7311394316
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -36,7 +36,7 @@
commonName: localhost
- name: Generate selfsigned certificate
register: selfsigned_certificate
community.crypto.openssl_certificate:
community.crypto.x509_certificate:
path: '{{ output_dir }}/cert.pem'
csr_path: '{{ output_dir }}/csr.csr'
privatekey_path: '{{ output_dir }}/privatekey.pem'

View file

@ -32,7 +32,7 @@
- key2
loop_control:
loop_var: key
community.crypto.openssl_certificate:
community.crypto.x509_certificate:
path: '{{ output_dir }}/ansible_{{ key }}.pem'
privatekey_path: '{{ output_dir }}/ansible_{{ key }}.key'
csr_path: '{{ output_dir }}/ansible_{{ key }}.csr'

View file

@ -32,7 +32,7 @@
commonName: localhost
- name: Generate selfsigned certificate
community.crypto.openssl_certificate:
community.crypto.x509_certificate:
path: '{{ local_temp_dir }}/cert.pem'
csr_path: '{{ local_temp_dir }}/csr.csr'
privatekey_path: '{{ local_temp_dir }}/privatekey.pem'

View file

@ -47,7 +47,7 @@
- name: Generate selfsigned certificate
register: selfsigned_certificate
community.crypto.openssl_certificate:
community.crypto.x509_certificate:
path: '{{ output_dir }}/cert.pem'
csr_path: '{{ output_dir }}/csr.csr'
privatekey_path: '{{ output_dir }}/privatekey.pem'

View file

@ -51,7 +51,7 @@
- DNS:test-registry.ansible.com
- name: Create frontend certificate
community.crypto.openssl_certificate:
community.crypto.x509_certificate:
path: '{{ output_dir }}/cert.pem'
csr_path: '{{ output_dir }}/cert.csr'
privatekey_path: '{{ output_dir }}/cert.key'