File tree 3 files changed +48
-0
lines changed
terraform/aws/implementation
3 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -65,3 +65,10 @@ module "s3" {
65
65
region = var. region
66
66
eks_assume_role_policy = module. eks . eks_assume_role_policy
67
67
}
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 number Diff line number Diff line change
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 number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments