-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
67 lines (55 loc) · 1.25 KB
/
vars.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
variable "aws_region" {
description = "AWS region"
type = string
default = "us-east-1"
}
variable "aws_efs_replicate_region" {
description = "EFS replication region"
type = string
default = "us-west-1"
}
variable "availability_zone" {
type = list(string)
default = ["us-east-1a", "us-east-1b"]
}
variable "amazon_linux_2023_ami_id" {
type = string
default = "ami-0427090fd1714168b"
}
locals {
pocketbase_launch_script = "${path.root}/scripts/launch.sh"
nfs_port = 2049
}
variable "tidybase_compute_key_name" {
type = string
default = "pocketbase-ec2"
}
variable "tidybase_secret_name" {
type = string
default = "test/tidybase"
}
variable "ADMIN_EMAIL" {
description = "pocketbase initial admin email"
type = string
}
variable "ADMIN_PASSWORD" {
description = "pocketbase initial admin password"
type = string
sensitive = true
}
variable "instance_profile" {
type = string
default = "LabInstanceProfile"
}
variable "lambda_role" {
type = string
default = "arn:aws:iam::779371441497:role/LabRole"
}
variable "light_workload_ec2" {
type = string
default = "t2.micro"
}
variable "heavy_workload_ec2" {
type = string
default = "t2.medium"
}