From ec82806a5972148ce90738de6428c7fe8f70b9e0 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sun, 17 Oct 2021 16:04:48 +0200 Subject: [PATCH] Fix wrong FQCNs. (#225) --- .../integration/targets/docker_swarm/tasks/tests/options-ca.yml | 2 +- .../targets/setup_docker_registry/tasks/setup-frontend.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/targets/docker_swarm/tasks/tests/options-ca.yml b/tests/integration/targets/docker_swarm/tasks/tests/options-ca.yml index ab269923..ab94d507 100644 --- a/tests/integration/targets/docker_swarm/tasks/tests/options-ca.yml +++ b/tests/integration/targets/docker_swarm/tasks/tests/options-ca.yml @@ -32,7 +32,7 @@ - key2 loop_control: loop_var: key - community.crypto.openssl_certificate: + community.crypto.x509_certificate: path: '{{ remote_tmp_dir }}/ansible_{{ key }}.pem' privatekey_path: '{{ remote_tmp_dir }}/ansible_{{ key }}.key' csr_path: '{{ remote_tmp_dir }}/ansible_{{ key }}.csr' diff --git a/tests/integration/targets/setup_docker_registry/tasks/setup-frontend.yml b/tests/integration/targets/setup_docker_registry/tasks/setup-frontend.yml index f8c5c20b..19c6a42e 100644 --- a/tests/integration/targets/setup_docker_registry/tasks/setup-frontend.yml +++ b/tests/integration/targets/setup_docker_registry/tasks/setup-frontend.yml @@ -60,7 +60,7 @@ - DNS:test-registry.ansible.com - name: Create frontend certificate - community.crypto.openssl_certificate: + community.crypto.x509_certificate: path: '{{ remote_tmp_dir }}/cert.pem' csr_path: '{{ remote_tmp_dir }}/cert.csr' privatekey_path: '{{ remote_tmp_dir }}/cert.key'