-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
39 lines (34 loc) · 916 Bytes
/
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
# AWS Details
variable "aws_region" {
description = "AWS region"
type = string
default = "us-west-1"
}
# The Materialize egress IPs, eg: SELECT * FROM mz_egress_ips;
variable "mz_egress_ips" {
description = "List of Materialize egress IPs"
type = list(any)
}
# Publicly accessible or not
variable "publicly_accessible" {
description = "Whether the RDS instance is publicly accessible or not"
type = bool
default = true
}
# Name of the RDS instance
variable "rds_instance_name" {
description = "The name of the RDS instance"
type = string
}
# RDS instance size
variable "rds_instance_class" {
description = "The size of the RDS instance"
type = string
default = "db.m5.large"
}
# RDS instance engine version
variable "engine_version" {
description = "The engine version of the RDS instance"
type = string
default = "14"
}