Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use hash instead of double slashes for single line comments
HCL syntax accepts both `#` and `//` for line comments, but `#` is more idiomatic. This is also mentioned in Terraform documentation: > The # single-line comment style is the default comment style and should be used in most cases. Automatic configuration formatting tools may automatically transform // comments into # comments, **since the double-slash style is not idiomatic.** https://developer.hashicorp.com/terraform/language/syntax/configuration#comments
- Loading branch information