File tree 5 files changed +4
-22
lines changed
5 files changed +4
-22
lines changed Original file line number Diff line number Diff line change 1
1
# Tamr Terraform Template Repo
2
2
3
+ ## v4.0.0 - July 20th 2022
4
+ * Remove unused variables security_group_name, vpc_id, and additional_cidrs
5
+
3
6
## v3.1.2 - May 11th 2022
4
7
* Adds idle_in_transaction_session_timeout to parameter group
5
8
Original file line number Diff line number Diff line change @@ -52,8 +52,6 @@ This terraform module will create:
52
52
| rds\_ subnet\_ ids | VPC subnet IDs in subnet group | ` list(string) ` | n/a | yes |
53
53
| security\_ group\_ ids | List of security group IDs to associate | ` list(string) ` | n/a | yes |
54
54
| subnet\_ group\_ name | The name of the subnet group to add the RDS instance to | ` string ` | n/a | yes |
55
- | vpc\_ id | VPC ID for the rds security group | ` string ` | n/a | yes |
56
- | additional\_ cidrs | Additional CIDR to connect to RDS Postgres instance | ` list(string) ` | ` [] ` | no |
57
55
| additional\_ tags | [ DEPRECATED: Use ` tags ` instead] Additional tags to set on the RDS instance. | ` map(string) ` | ` {} ` | no |
58
56
| allocated\_ storage | Allocate storage | ` number ` | ` 20 ` | no |
59
57
| apply\_ immediately | Apply immediately, do not set this to true for production | ` bool ` | ` false ` | no |
@@ -73,7 +71,6 @@ This terraform module will create:
73
71
| parameter\_ group\_ family | The family of the DB parameter group | ` string ` | ` "postgres12" ` | no |
74
72
| parameter\_ group\_ name | The name of the rds parameter group | ` string ` | ` "rds-postgres-pg" ` | no |
75
73
| postgres\_ name | The name of the postgres database to create on the DB instance | ` string ` | ` "tamr_rds_db" ` | no |
76
- | security\_ group\_ name | Name for the security group for the rds instance | ` string ` | ` "tamr_rds_sg" ` | no |
77
74
| skip\_ final\_ snapshot | Skip final snapshot | ` bool ` | ` true ` | no |
78
75
| storage\_ type | Storage type (e.g. gp2, io1) | ` string ` | ` "gp2" ` | no |
79
76
| tags | A map of tags to add to all resources. Replaces ` additional_tags ` . | ` map(string) ` | ` {} ` | no |
Original file line number Diff line number Diff line change 1
- 3.1.2
1
+ 4.0.0
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ module "rds_postgres" {
8
8
username = " exampleUsername"
9
9
password = " examplePassword" # tfsec:ignore:GEN003
10
10
11
- vpc_id = var. vpc_id
12
11
subnet_group_name = " ${ var . name_prefix } _example_subnet_group"
13
12
# Network requirement: DB subnet group needs a subnet in at least two Availability Zones
14
13
rds_subnet_ids = var. subnet_ids
Original file line number Diff line number Diff line change @@ -127,28 +127,11 @@ variable "tags" {
127
127
default = {}
128
128
}
129
129
130
- variable "security_group_name" {
131
- description = " Name for the security group for the rds instance"
132
- type = string
133
- default = " tamr_rds_sg"
134
- }
135
-
136
130
variable "security_group_ids" {
137
131
description = " List of security group IDs to associate"
138
132
type = list (string )
139
133
}
140
134
141
- variable "vpc_id" {
142
- description = " VPC ID for the rds security group"
143
- type = string
144
- }
145
-
146
- variable "additional_cidrs" {
147
- description = " Additional CIDR to connect to RDS Postgres instance"
148
- type = list (string )
149
- default = []
150
- }
151
-
152
135
variable "engine_version" {
153
136
description = " Version of RDS Postgres"
154
137
type = string
You can’t perform that action at this time.
0 commit comments