-
Notifications
You must be signed in to change notification settings - Fork 0
/
servers.tf
26 lines (22 loc) · 835 Bytes
/
servers.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
# ================================================================
# Servers
#
# Add new servers here (make sure to edit/remove the example one
# below)
# ================================================================
module "example" {
# Change these to desired values
id = "ExampleVanilla"
game = "minecraft"
hostname = "gsed-example.duckdns.org"
# 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
# --------------------------------------------------------------
}