Skip to content

Commit

Permalink
Fix terrafmt errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Aug 27, 2024
1 parent 7c62955 commit a81c30a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/service/neptune/cluster_instance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ data "aws_neptune_orderable_db_instance" "test" {
resource "aws_neptune_parameter_group" "test" {
name = %[1]q
family = join("", ["neptune",split(".",aws_neptune_cluster.test.engine_version)[0],".",split(".",aws_neptune_cluster.test.engine_version)[1]])
family = join("", ["neptune", split(".", aws_neptune_cluster.test.engine_version)[0], ".", split(".", aws_neptune_cluster.test.engine_version)[1]])
parameter {
name = "neptune_query_timeout"
Expand Down
2 changes: 1 addition & 1 deletion internal/service/neptune/cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1614,7 +1614,7 @@ resource "aws_neptune_cluster_snapshot" "test" {
}
resource "aws_neptune_cluster_parameter_group" "test" {
family = join("", ["neptune",split(".",aws_neptune_cluster_snapshot.test.engine_version)[0],".",split(".",aws_neptune_cluster_snapshot.test.engine_version)[1]])
family = join("", ["neptune", split(".", aws_neptune_cluster_snapshot.test.engine_version)[0], ".", split(".", aws_neptune_cluster_snapshot.test.engine_version)[1]])
name = %[1]q
parameter {
Expand Down

0 comments on commit a81c30a

Please sign in to comment.