Skip to content

Commit 8be089b

Browse files
committed
Made lint happy
1 parent 2002945 commit 8be089b

File tree

5 files changed

+3
-10
lines changed

5 files changed

+3
-10
lines changed

.github/linters/.yaml-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
extends: default
33
rules:
44
line-length: disable
5+
comments-indentation: disable
56
trailing-spaces: disable
67
truthy: disable
78
braces:

Ansible/fsx_inventory_report/get_fsxn_regions.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,3 @@
2424
| map(attribute="attributes.aws:region")
2525
| list
2626
}}
27-
28-
#- name: Output the FSxN regions
29-
# debug:
30-
# msg: "fsxn_regions={{ fsxn_regions }}"

Ansible/fsx_inventory_report/process_region.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
---
77
- name: Get all the FSxNs for the specified region.
88
ansible.builtin.shell:
9-
cmd: aws fsx describe-file-systems --region {{ region }} --query 'FileSystems[*].{FileSystemId:FileSystemId}' --output text | sed -e '/^$/d'
9+
cmd: aws fsx describe-file-systems --region {{ region }} --query 'FileSystems[*].{FileSystemId:FileSystemId}' --output text | sed -e '/^$/d'
1010
register: fsxn_ids_per_region
1111

1212
- name: Get all the SVMs and volumes for each FSxN.

Ansible/snapmirror_report/get_fsxn_regions.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,3 @@
2424
| map(attribute="attributes.aws:region")
2525
| list
2626
}}
27-
28-
#- name: Output the FSxN regions
29-
# debug:
30-
# msg: "fsxn_regions={{ fsxn_regions }}"

Ansible/snapmirror_report/process_region.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
---
66
- name: Get all the FSxNs for the specified region.
77
ansible.builtin.shell:
8-
cmd: aws fsx describe-file-systems --region {{ region }} --query 'FileSystems[*].{FileSystemId:FileSystemId}' --output text | sed -e '/^$/d'
8+
cmd: aws fsx describe-file-systems --region {{ region }} --query 'FileSystems[*].{FileSystemId:FileSystemId}' --output text | sed -e '/^$/d'
99
register: fsxn_ids_per_region
1010

1111
- name: Get the SnapMirror relationships for each FSxN.

0 commit comments

Comments
 (0)