Skip to content

Commit

Permalink
tf12 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
DrFaust92 committed Sep 21, 2020
1 parent cc6b5e0 commit 42c97cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aws/resource_aws_api_gateway_usage_plan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -723,8 +723,8 @@ resource "aws_api_gateway_usage_plan" "test" {
name = "%s"
api_stages {
api_id = "${aws_api_gateway_rest_api.test.id}"
stage = "${aws_api_gateway_deployment.foo.stage_name}"
api_id = aws_api_gateway_rest_api.test.id
stage = aws_api_gateway_deployment.foo.stage_name
}
}
`, rName)
Expand All @@ -741,8 +741,8 @@ resource "aws_api_gateway_usage_plan" "test" {
}
api_stages {
api_id = "${aws_api_gateway_rest_api.test.id}"
stage = "${aws_api_gateway_deployment.test.stage_name}"
api_id = aws_api_gateway_rest_api.test.id
stage = aws_api_gateway_deployment.test.stage_name
}
}
`, rName)
Expand Down

0 comments on commit 42c97cf

Please sign in to comment.