Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Remove unnecessary quotes (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
snovikov authored Mar 11, 2020
1 parent c307384 commit fd1db14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ locals {
uri_match = []
ranges = [
{
"value" = "127.0.0.1/32"
value = "127.0.0.1/32"
},
]
}, {
Expand All @@ -23,10 +23,10 @@ locals {
uri_match = []
ranges = [
{
"value" = "8.8.4.4/32"
value = "8.8.4.4/32"
},
{
"value" = "8.8.8.8/32"
value = "8.8.8.8/32"
},
]
}, {
Expand Down

0 comments on commit fd1db14

Please sign in to comment.