-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaff.tf
33 lines (29 loc) · 871 Bytes
/
staff.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
resource "discord_category_channel" "staff" {
name = "Staff"
server_id = discord_server.main.id
position = 3
}
resource "discord_text_channel" "abandoned-classroom" {
name = "abandoned-classroom"
server_id = discord_server.main.id
category = discord_category_channel.staff.id
position = 14
}
resource "discord_text_channel" "student-council-room" {
name = "student-council-room"
server_id = discord_server.main.id
category = discord_category_channel.staff.id
position = 13
}
resource "discord_text_channel" "reeducation" {
name = "reeducation"
server_id = discord_server.main.id
category = discord_category_channel.staff.id
position = 15
}
resource "discord_text_channel" "logpog" {
name = "logpog"
server_id = discord_server.main.id
category = discord_category_channel.staff.id
position = 16
}