Skip to content

Commit

Permalink
Fix Linting Issues
Browse files Browse the repository at this point in the history
  • Loading branch information
EC2 Default User committed Apr 6, 2023
1 parent 9ea88d2 commit c2ad096
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ resource "aws_vpclattice_service" "test" {
}
resource "aws_vpclattice_service_network" "test" {
name = %[1]q
name = %[1]q
}
resource "aws_vpclattice_service_networkservice_association" "test" {
Expand All @@ -208,14 +208,14 @@ resource "aws_vpclattice_service" "test" {
}
resource "aws_vpclattice_service_network" "test" {
name = %[1]q
name = %[1]q
}
resource "aws_vpclattice_service_networkservice_association" "test" {
service_identifier = aws_vpclattice_service.test.id
service_network_identifier = aws_vpclattice_service_network.test.id
tags = {
%[2]q = %[3]q
%[2]q = %[3]q
}
}
`, rName, tagKey1, tagValue1)
Expand All @@ -232,15 +232,15 @@ resource "aws_vpclattice_service" "test" {
}
resource "aws_vpclattice_service_network" "test" {
name = %[1]q
name = %[1]q
}
resource "aws_vpclattice_service_networkservice_association" "test" {
service_identifier = aws_vpclattice_service.test.id
service_network_identifier = aws_vpclattice_service_network.test.id
tags = {
%[2]q = %[3]q
%[4]q = %[5]q
%[2]q = %[3]q
%[4]q = %[5]q
}
}
`, rName, tagKey1, tagValue1, tagKey2, tagValue2)
Expand Down

0 comments on commit c2ad096

Please sign in to comment.