-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
117 lines (117 loc) · 2.78 KB
/
variables.tf
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
variable "artists" {
type = list(map(string))
default = [
{
"singer" = "Aerosmith"
"song" = "Dream On"
},
{
"singer" = "Jimi Hendrix"
"song" = "All Along the Watchtower"
},
{
"singer" = "The Killers"
"song" = "Glamorous Indie Rock And Roll"
},
{
"singer" = "The Strokes"
"song" = "Taken for a Fool"
},
{
"singer" = "Arctic Monkeys"
"song" = "I Bet You Look Good On the Dancefloor"
},
{
"singer" = "The Neighbourhood"
"song" = "Daddy Issues"
},
{
"singer" = "The Neighbourhood"
"song" = "Female Robbery"
},
{
"singer" = "Mando Diao"
"song" = "Dance With Somebody"
},
{
"singer" = "The Subways"
"song" = "Rock & Roll Queen"
},
{
"singer" = "The Subways"
"song" = "Oh Yeah"
},
{
"singer" = "The Bravery"
"song" = "An Honest Mistake"
},
{
"singer" = "The Last Shadow Puppets"
"song" = "Aviation"
},
{
"singer" = "The Kooks"
"song" = "Bad Habit"
},
{
"singer" = "South"
"song" = "Paint The Silence"
},
{
"singer" = "New Order"
"song" = "Crystal"
},
{
"singer" = "David Bowie"
"song" = "Ashes to Ashes"
},
{
"singer" = "The White Stripes"
"song" = "Icky Thump"
},
{
"singer" = "Wolfmother"
"song" = "New Moon Rising"
},
{
"singer" = "Foo Fighters"
"song" = "Arlandria"
},
{
"singer" = "The Smashing Pumpkins"
"song" = "Ava Adore"
},
{
"singer" = "Bush"
"song" = "Machinehead"
},
{
"singer" = "The Rapture"
"song" = "How Deep Is Your Love?"
},
{
"singer" = "Arcade Fire"
"song" = "Reflektor"
},
{
"singer" = "Bring Me The Horizon"
"song" = "Throne"
},
{
"singer" = "Rise Against"
"song" = "Satellite"
},
{
"singer" = "Anberlin"
"song" = "Armageddon"
},
{
"singer" = "The Smashing Pumpkins"
"song" = "Eye"
},
{
"singer" = "Tame Impala"
"song" = "Borderline"
},
]
}