Skip to content

Commit

Permalink
indentation correction in playbook
Browse files Browse the repository at this point in the history
Signed-off-by: MuthuSundaravadivel <[email protected]>
  • Loading branch information
MuthuSundaravadivel authored and celder628 committed Apr 17, 2024
1 parent a7e7749 commit 026a278
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions tutorial/24-reenroll-peer-tls-and-ecert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions tutorial/25-reenroll-orderer-tls-and-ecert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 026a278

Please sign in to comment.