Skip to content

Commit

Permalink
Fix acceptance tests and documentation formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Sep 20, 2023
1 parent d45af78 commit c775e32
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ resource "aws_fsx_ontap_storage_virtual_machine" "test" {
data "aws_fsx_ontap_storage_virtual_machines" "test" {
filter {
name = "file-system-id"
name = "file-system-id"
values = [aws_fsx_ontap_file_system.test.id]
}
Expand Down
10 changes: 5 additions & 5 deletions website/docs/d/fsx_ontap_storage_virtual_machines.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: |-
This resource can be useful for getting back a set of FSx ONTAP Storage Virtual Machine (SVM) IDs.
---

# Data Source: aws_fsx_ontap_storage_virtual_machine
# Data Source: aws_fsx_ontap_storage_virtual_machines

This resource can be useful for getting back a set of FSx ONTAP Storage Virtual Machine (SVM) IDs.

Expand All @@ -15,11 +15,11 @@ This resource can be useful for getting back a set of FSx ONTAP Storage Virtual
The following shows outputting all SVM IDs for a given FSx ONTAP File System.

```
data "aws_fsx_ontap_storage_virtual_machines" "test" {
data "aws_fsx_ontap_storage_virtual_machines" "example" {
filter {
name = "file-system-id"
values = ["fs-12345678"]
}
name = "file-system-id"
values = ["fs-12345678"]
}
}
```

Expand Down

0 comments on commit c775e32

Please sign in to comment.