-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path07-coast.tf
71 lines (63 loc) · 2.62 KB
/
07-coast.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
# ### COAST ###
resource discord_category_channel coast {
name = "Coast"
server_id = discord_server.nlp.id
position = discord_category_channel.city.position + 1
}
module "coast_permissions" {
# only Players are allowed to write in IC chats
source = "./limited_channel_permissions"
server_id = discord_server.nlp.id
channel_id = discord_category_channel.coast.id
permissions = local.permissions.send_messages
allow_roles = [discord_role.player.id]
}
resource discord_text_channel coast_ooc {
name = "coast-ooc"
server_id = discord_server.nlp.id
category = discord_category_channel.coast.id
sync_perms_with_category = true
lifecycle { ignore_changes = [position] }
}
resource discord_text_channel tide_pools {
name = "tide-pools"
server_id = discord_server.nlp.id
category = discord_category_channel.coast.id
position = discord_text_channel.coast_ooc.position + 1
sync_perms_with_category = true
}
resource discord_text_channel colorful_beach {
name = "heartbreak-beach"
server_id = discord_server.nlp.id
category = discord_category_channel.coast.id
position = discord_text_channel.tide_pools.position + 1
sync_perms_with_category = true
}
resource discord_text_channel cliffs {
name = "basalt-cliffs"
server_id = discord_server.nlp.id
category = discord_category_channel.coast.id
position = discord_text_channel.colorful_beach.position + 1
sync_perms_with_category = true
}
resource discord_text_channel coast_volcano_base {
name = "volcano-base"
server_id = discord_server.nlp.id
category = discord_category_channel.coast.id
position = discord_text_channel.cliffs.position + 1
sync_perms_with_category = true
}
resource discord_text_channel coast_volcano_peak {
name = "volcano-peak"
server_id = discord_server.nlp.id
category = discord_category_channel.coast.id
position = discord_text_channel.coast_volcano_base.position + 1
sync_perms_with_category = true
}
resource discord_text_channel coast_volcano_caldera {
name = "steamy-caldera"
server_id = discord_server.nlp.id
category = discord_category_channel.coast.id
position = discord_text_channel.coast_volcano_peak.position + 1
sync_perms_with_category = true
}