forked from outerbounds/terraform-aws-metaflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
63 lines (53 loc) · 1.71 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
58
59
60
61
62
63
variable "db_instance_type" {
type = string
description = "RDS instance type to launch for PostgresQL database."
default = "db.t2.small"
}
variable "db_name" {
type = string
description = "Name of PostgresQL database for Metaflow service."
default = "metaflow"
}
variable "force_destroy_s3_bucket" {
type = bool
description = "Empty S3 bucket before destroying via terraform destroy"
default = false
}
variable "db_username" {
type = string
description = "PostgresQL username; defaults to 'metaflow'"
default = "metaflow"
}
variable "postgres_engine_version" {
type = string
description = "Postgres engine version to use for Metaflow database."
default = "11"
}
variable "metadata_service_security_group_id" {
type = string
description = "The security group ID used by the MetaData service. We'll grant this access to our DB."
}
variable "metaflow_vpc_id" {
type = string
description = "ID of the Metaflow VPC this SageMaker notebook instance is to be deployed in"
}
variable "resource_prefix" {
type = string
description = "Prefix given to all AWS resources to differentiate between applications"
}
variable "resource_suffix" {
type = string
description = "Suffix given to all AWS resources to differentiate between environment and workspace"
}
variable "standard_tags" {
type = map(string)
description = "The standard tags to apply to every AWS resource."
}
variable "subnet1_id" {
type = string
description = "First subnet used for availability zone redundancy"
}
variable "subnet2_id" {
type = string
description = "Second subnet used for availability zone redundancy"
}