From 026a278ee5a9bc6341a67e60b5c50eb4a69e71b8 Mon Sep 17 00:00:00 2001 From: MuthuSundaravadivel Date: Tue, 16 Apr 2024 17:49:26 +0530 Subject: [PATCH] indentation correction in playbook Signed-off-by: MuthuSundaravadivel --- tutorial/24-reenroll-peer-tls-and-ecert.yml | 16 ++++++++-------- tutorial/25-reenroll-orderer-tls-and-ecert.yml | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/tutorial/24-reenroll-peer-tls-and-ecert.yml b/tutorial/24-reenroll-peer-tls-and-ecert.yml index 573d475..0f2f835 100644 --- a/tutorial/24-reenroll-peer-tls-and-ecert.yml +++ b/tutorial/24-reenroll-peer-tls-and-ecert.yml @@ -11,14 +11,14 @@ tasks: - name: Reenroll a Peer TLS/Ecert Cert hyperledger.fabric_ansible_collection.peer_action: - api_endpoint: "{{ api_endpoint }}" - api_authtype: "{{ api_authtype }}" - api_key: "{{ api_key }}" - api_secret: "{{ api_secret | default(omit) }}" - api_token_endpoint: "{{ api_token_endpoint | default(omit) }}" - name: "{{ peer_name }}" - action: "{{ action }}" - type: "{{ cert_type }}" + api_endpoint: "{{ api_endpoint }}" + api_authtype: "{{ api_authtype }}" + api_key: "{{ api_key }}" + api_secret: "{{ api_secret | default(omit) }}" + api_token_endpoint: "{{ api_token_endpoint | default(omit) }}" + name: "{{ peer_name }}" + action: "{{ action }}" + type: "{{ cert_type }}" register: result - name: Fail if the Certificate Authority did not accept the message diff --git a/tutorial/25-reenroll-orderer-tls-and-ecert.yml b/tutorial/25-reenroll-orderer-tls-and-ecert.yml index 04194ca..2ea8c8f 100644 --- a/tutorial/25-reenroll-orderer-tls-and-ecert.yml +++ b/tutorial/25-reenroll-orderer-tls-and-ecert.yml @@ -12,14 +12,14 @@ tasks: - name: Restarting Ordering Service Node "{{ ordering_node_name }}" hyperledger.fabric_ansible_collection.ordering_service_node_action: - api_endpoint: "{{ api_endpoint }}" - api_authtype: "{{ api_authtype }}" - api_key: "{{ api_key }}" - api_secret: "{{ api_secret | default(omit) }}" - api_token_endpoint: "{{ api_token_endpoint | default(omit) }}" - name: "{{ ordering_node_name }}" - action: "restart" - type: "{{ cert_type }}" + api_endpoint: "{{ api_endpoint }}" + api_authtype: "{{ api_authtype }}" + api_key: "{{ api_key }}" + api_secret: "{{ api_secret | default(omit) }}" + api_token_endpoint: "{{ api_token_endpoint | default(omit) }}" + name: "{{ ordering_node_name }}" + action: "restart" + type: "{{ cert_type }}" register: result - name: Fail if Ordering Service Node "{{ ordering_node_name }}" did not accept the message