-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocial.tf
83 lines (71 loc) · 2.06 KB
/
social.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
resource "discord_category_channel" "social" {
name = "Social"
server_id = discord_server.main.id
position = 5
}
resource "discord_text_channel" "general" {
name = "general"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 17
}
resource "discord_text_channel" "off-topic" {
name = "off-topic"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 23
}
resource "discord_text_channel" "games" {
name = "games"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 19
}
resource "discord_text_channel" "anime-manga" {
name = "anime-manga"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 18
}
resource "discord_text_channel" "technology" {
name = "technology"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 22
}
resource "discord_text_channel" "serious-discussion" {
name = "serious-discussion"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 26
}
resource "discord_text_channel" "cooking-class" {
name = "cooking-class"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 24
}
resource "discord_text_channel" "real-life" {
name = "real-life"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 25
}
resource "discord_text_channel" "minecraft" {
name = "minecraft"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 21
}
resource "discord_text_channel" "tv-movies-books" {
name = "tv-movies-books"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 20
}
resource "discord_text_channel" "jap" {
name = "日本語"
server_id = discord_server.main.id
category = discord_category_channel.social.id
position = 27
}