-
Notifications
You must be signed in to change notification settings - Fork 0
/
important.tf
75 lines (65 loc) · 1.97 KB
/
important.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
resource "discord_category_channel" "important" {
name = "important"
server_id = discord_server.main.id
position = 2
}
resource "discord_text_channel" "promos" {
name = "promos"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 11
}
resource "discord_text_channel" "role_selection" {
name = "role-selection"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 12
}
resource "discord_text_channel" "ab_announcements" {
name = "angelbeats-announcements"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 6
}
resource "discord_text_channel" "suggestion_discussion" {
name = "suggestions-discussion"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 9
}
resource "discord_text_channel" "operations" {
name = "operations"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 10
}
resource "discord_text_channel" "suggestions" {
name = "suggestions"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 8
}
resource "discord_text_channel" "goodbye" {
name = "goodbye"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 4
}
resource "discord_text_channel" "welcome" {
name = "welcome"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 3
}
resource "discord_text_channel" "server_announcements" {
name = "server-announcements"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 5
}
resource "discord_text_channel" "partners" {
name = "partnering-servers"
server_id = discord_server.main.id
category = discord_category_channel.important.id
position = 7
}