Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pwillie committed Aug 9, 2022
1 parent 2230b88 commit 08ace04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/service/fsx/openzfs_snapshot_data_source_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ resource "aws_fsx_openzfs_snapshot" "test" {
data "aws_fsx_openzfs_snapshot" "test" {
filter {
name = "file-system-id"
values = [aws_fsx_openzfs_file_system.test.id]
values = [aws_fsx_openzfs_file_system.test.id]
}
}
`, rName))
Expand All @@ -195,7 +195,7 @@ resource "aws_fsx_openzfs_snapshot" "test" {
data "aws_fsx_openzfs_snapshot" "test" {
filter {
name = "volume-id"
values = [aws_fsx_openzfs_file_system.test.root_volume_id]
values = [aws_fsx_openzfs_file_system.test.root_volume_id]
}
}
`, rName))
Expand All @@ -218,7 +218,7 @@ data "aws_fsx_openzfs_snapshot" "test" {
most_recent = true
filter {
name = "volume-id"
values = [aws_fsx_openzfs_file_system.test.root_volume_id]
values = [aws_fsx_openzfs_file_system.test.root_volume_id]
}
depends_on = [aws_fsx_openzfs_snapshot.test, aws_fsx_openzfs_snapshot.latest]
}
Expand Down

0 comments on commit 08ace04

Please sign in to comment.