-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpalworld.tf
32 lines (27 loc) · 1.16 KB
/
palworld.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
# ================================================================
# Example: Palworld server
#
# See: https://palworld-server-docker.loef.dev/category/configuration
# ================================================================
module "GSEDPalworldExample" {
id = "GSEDPalworldExample"
game = "palworld"
hostname = "palworld-example.duckdns.org"
compose_game_environment = {
"SERVER_NAME" : "My GSED Palworld server"
"SERVER_DESCRIPTION" : "Welcome to my server"
"SERVER_PASSWORD" : "palpalpal"
"ADMIN_PASSWORD" : "worldworld", # hide server from community list
"DISCORD_WEBHOOK_URL" : "https://discord.com/api/webhooks/.../..." # optional
}
# DDNS
duckdns_token = var.duckdns_token
# Region (change these to desired region)
base_region = module.region_us-east-2.base_region
providers = { aws = aws.us-east-2 }
az = "us-east-2a"
# ------------ Common values (just copy and paste) -------------
source = "./server"
iam_role_dlm_lifecycle_arn = module.global.iam_role_dlm_lifecycle_arn
# --------------------------------------------------------------
}