File: comment_aligned.input

package info (click to toggle)
golang-github-hashicorp-hcl 0.0~git20161215.0.80e628d-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch, stretch-backports
  • size: 948 kB
  • sloc: makefile: 22
file content (28 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
aligned {
# We have some aligned items below
   foo = "fatih" # yoo1
   default = "bar" # yoo2
   bar = "bar and foo" # yoo3
   default  = {
     bar = "example"
   }
  #deneme arslan
   fatih = ["fatih"] # yoo4
	#fatih arslan
   fatiharslan = ["arslan"] // yoo5
   default  = {
     bar = "example"
   }

security_groups = [
	"foo",    # kenya 1
	"${aws_security_group.firewall.foo}", # kenya 2
]

security_groups2 = [
	"foo",    # kenya 1
	"bar",  # kenya 1.5
	"${aws_security_group.firewall.foo}", # kenya 2
	"foobar", # kenya 3
]
}