-
Notifications
You must be signed in to change notification settings - Fork 0
/
misc.tf
62 lines (54 loc) · 1.51 KB
/
misc.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
resource "discord_category_channel" "misc" {
name = "Misc"
server_id = discord_server.main.id
position = 6
}
resource "discord_text_channel" "nsfw" {
name = "hidden-library-corner"
server_id = discord_server.main.id
nsfw = true
category = discord_category_channel.misc.id
position = 35
}
resource "discord_text_channel" "band-room" {
name = "band-room"
server_id = discord_server.main.id
category = discord_category_channel.misc.id
position = 30
}
resource "discord_text_channel" "rp-palace" {
name = "rp-palace"
server_id = discord_server.main.id
category = discord_category_channel.misc.id
position = 34
}
resource "discord_text_channel" "gallery" {
name = "gallery"
server_id = discord_server.main.id
category = discord_category_channel.misc.id
position = 28
}
resource "discord_text_channel" "art-room" {
name = "art-room"
server_id = discord_server.main.id
category = discord_category_channel.misc.id
position = 29
}
resource "discord_text_channel" "trophy-case" {
name = "trophy-case"
server_id = discord_server.main.id
category = discord_category_channel.misc.id
position = 33
}
resource "discord_text_channel" "genshin-impact" {
name = "genshin-impact"
server_id = discord_server.main.id
category = discord_category_channel.misc.id
position = 32
}
resource "discord_text_channel" "osu" {
name = "osu"
server_id = discord_server.main.id
category = discord_category_channel.misc.id
position = 31
}