Skip to content

Commit

Permalink
Fixed ansible lint in tests/integration/targets/ntnx_recovery_points_…
Browse files Browse the repository at this point in the history
…v2/tasks/recovery_points.yml
  • Loading branch information
abhinavbansal29 committed Dec 9, 2024
1 parent abd91e3 commit 66936bc
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

- name: Create first Volume group
ntnx_volume_groups_v2:
name: "{{vg_name}}_1"
name: "{{ vg_name }}_1"
description: "Volume group"
cluster_reference: "{{ cluster.uuid }}"
register: result
Expand All @@ -99,8 +99,8 @@
- result.response is defined
- result.changed == true
- result.ext_id == result.response.ext_id
- result.response.cluster_reference == "{{cluster.uuid}}"
- result.response.name == "{{vg_name}}_1"
- result.response.cluster_reference == "{{ cluster.uuid }}"
- result.response.name == "{{ vg_name }}_1"
- result.response.description == "Volume group"
- result.response.should_load_balance_vm_attachments == false
- result.response.sharing_status == None
Expand All @@ -116,7 +116,7 @@

- name: Create second Volume group
ntnx_volume_groups_v2:
name: "{{vg_name}}_2"
name: "{{ vg_name }}_2"
description: "Volume group"
cluster_reference: "{{ cluster.uuid }}"
register: result
Expand All @@ -131,8 +131,8 @@
- result.response is defined
- result.changed == true
- result.ext_id == result.response.ext_id
- result.response.cluster_reference == "{{cluster.uuid}}"
- result.response.name == "{{vg_name}}_2"
- result.response.cluster_reference == "{ {cluster.uuid }}"
- result.response.name == "{{ vg_name }}_2"
- result.response.description == "Volume group"
- result.response.should_load_balance_vm_attachments == false
- result.response.sharing_status == None
Expand Down

0 comments on commit 66936bc

Please sign in to comment.