-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvariables.tf
More file actions
61 lines (59 loc) · 1.15 KB
/
Copy pathvariables.tf
File metadata and controls
61 lines (59 loc) · 1.15 KB
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
variable "region" {
default = "us-east-1"
}
variable "vpc_id" {
default = ""
description = "Optionally specify the vpc id to use instead of the default vpc"
}
variable "ecs_ami" {
default = "ami-03dbf0c122cb6cf1d"
}
variable "instance_type" {
default = "m5.large"
}
variable "key_name" {
description = "SSH key for ECS instance"
}
variable "task_cpu" {
type = number
default = 1024
}
variable "task_memory" {
type = number
default = 1024
}
variable "task_name" {
default = "valheim"
}
variable "docker_image" {
default = "mbround18/valheim"
}
variable "docker_image_version" {
default = "latest"
}
variable "world_name" {}
variable "world_password" {}
variable "world_public" {
default = "1"
}
variable "world_tz" {
default = "America/Chicago"
}
variable "world_backup" {
default = "1"
}
variable "world_backup_schedule" {
default = "0 */6 * * *"
}
variable "world_backup_remove_old" {
default = "1"
}
variable "world_backup_days_to_live" {
default = "3"
}
variable "world_update" {
default = "1"
}
variable "world_update_schedule" {
default = "0 6 * * *"
}