Skip to content

Commit e7ded9e

Browse files
author
marycrawford
committedJul 25, 2024
initial commit for adding tefca-viewer postgres db
1 parent 8e209cc commit e7ded9e

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed
 

‎terraform/aws/implementation/main.tf

+7
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,10 @@ module "s3" {
6565
region = var.region
6666
eks_assume_role_policy = module.eks.eks_assume_role_policy
6767
}
68+
69+
module "rds" {
70+
source = "./modules/rds"
71+
region = var.region
72+
vpc_id = module.vpc.vpc_id
73+
private_subnet_ids = module.vpc.private_subnets
74+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
resource "aws_db_instance" "query-templates" {
2+
identifier = "tefca-viewer"
3+
instance_class = "db.t3.micro"
4+
allocated_storage = 5
5+
engine = "postgres"
6+
engine_version = "16.3"
7+
username = var.db_username
8+
password = var.db_password
9+
#db_subnet_group_name = aws_db_subnet_group.education.name
10+
vpc_security_group_ids = var.private_subnet_ids
11+
#parameter_group_name = aws_db_parameter_group.education.name
12+
publicly_accessible = false
13+
#skip_final_snapshot = true
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
variable "db_username" {
2+
type = string
3+
description = "Username of RDS Instance"
4+
default = "tefcaViewerDbUser"
5+
}
6+
7+
variable "db_password" {
8+
type = string
9+
description = "Password of RDS Instance"
10+
default = "tfViewerRdsTest123!"
11+
}
12+
13+
14+
variable "private_subnet_ids" {
15+
type = list(string)
16+
description = "List of private subnet IDs"
17+
}
18+
19+
variable "region" {
20+
type = string
21+
default = "us-east-1"
22+
}
23+
24+
variable "vpc_id" {
25+
type = string
26+
description = "ID of the VPC"
27+
}

0 commit comments

Comments
 (0)