-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
executable file
·57 lines (45 loc) · 1.45 KB
/
variables.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
# ====================================================================== npm ===
variable "npm_verison" {
type = string
description = "The runtime version of nginx proxy manager (npm)."
}
variable "experimental_mode" {
type = bool
description = "Toggle to enable a preset of settings such as log retention."
default = false
}
# ----------------------------------------------------------------- instance ---
variable "instance_sizes" {
type = list(string)
default = ["t3.micro", "t3a.micro"]
}
variable "instance_spot_enabled" {
type = bool
description = "Toggle to use spot instances."
default = false
}
# ------------------------------------------------------------------ network ---
variable "vpc_id" {
type = string
description = "The ID of the VPC to deploy resources into."
}
variable "vpc_public_subnet_ids" {
type = list(string)
description = "The IDs of the public subnets in the VPC to deploy resources into."
}
# ================================================================== context ===
variable "aws_region_name" {
type = string
description = "The name of the AWS region."
default = ""
}
variable "aws_account_id" {
type = string
description = "The ID of the AWS account."
default = ""
}
variable "aws_kv_namespace" {
type = string
description = "The namespace or prefix for AWS SSM parameters and similar resources."
default = ""
}