File tree 7 files changed +15
-10
lines changed
7 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Tamr Terraform Template Repo
2
2
3
+ ## v1.0.0 - April 12th 2021
4
+ * Updates minimum Terraform version to 13
5
+ * Updates minimum AWS provider version to 3.36.0
6
+ * Adds explicit type to ` additional_tags ` variable
7
+
3
8
## v0.4.1 - Nov 6th 2020
4
9
* Adds input ` db_port ` to configure port that postgres database accepts connections on
5
10
* Fixes example so it accepts ` ingress_sg_ids ` as input
Original file line number Diff line number Diff line change @@ -36,14 +36,14 @@ This terraform module will create:
36
36
37
37
| Name | Version |
38
38
| ------| ---------|
39
- | terraform | >= 0.12 |
40
- | aws | >= 2.45 .0 |
39
+ | terraform | >= 0.13 |
40
+ | aws | >= 3.36 .0 |
41
41
42
42
## Providers
43
43
44
44
| Name | Version |
45
45
| ------| ---------|
46
- | aws | >= 2.45 .0 |
46
+ | aws | >= 3.36 .0 |
47
47
48
48
## Inputs
49
49
@@ -55,7 +55,7 @@ This terraform module will create:
55
55
| subnet\_ group\_ name | The name of the subnet group to add the RDS instance to | ` string ` | n/a | yes |
56
56
| vpc\_ id | VPC ID for the rds security group | ` string ` | n/a | yes |
57
57
| additional\_ cidrs | Additional CIDR to connect to RDS Postgres instance | ` list(string) ` | ` [] ` | no |
58
- | additional\_ tags | Additional tags to set on the RDS instance | ` map ` | ` {} ` | no |
58
+ | additional\_ tags | Additional tags to set on the RDS instance | ` map(string) ` | ` {} ` | no |
59
59
| allocated\_ storage | Allocate storage | ` number ` | ` 20 ` | no |
60
60
| apply\_ immediately | Apply immediately, do not set this to true for production | ` bool ` | ` false ` | no |
61
61
| backup\_ retention\_ period | Backup retention period in days | ` number ` | ` 14 ` | no |
Original file line number Diff line number Diff line change 1
- 0.4.1
1
+ 1.0.0
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ This terraform module will create:
38
38
| ingress\_ sg\_ ids | List of security group IDs to allow ingress from (i.e. Spark cluster SG IDs, Tamr VM SG ID) | ` list(string) ` | n/a | yes |
39
39
| vpc\_ id | VPC ID for the rds security group | ` string ` | n/a | yes |
40
40
| additional\_ cidrs | Additional CIDR to connect to RDS Postgres instance | ` list(string) ` | ` [] ` | no |
41
- | additional\_ tags | Additional tags to set on the RDS instance | ` map ` | ` {} ` | no |
41
+ | additional\_ tags | Additional tags to set on the RDS instance | ` map(string) ` | ` {} ` | no |
42
42
| security\_ group\_ name | Name for the security group for the rds instance | ` string ` | ` "tamr_rds_sg" ` | no |
43
43
44
44
## Outputs
Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ variable "additional_cidrs" {
22
22
23
23
variable "additional_tags" {
24
24
description = " Additional tags to set on the RDS instance"
25
- type = map
25
+ type = map ( string )
26
26
default = {}
27
27
}
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ variable "copy_tags_to_snapshot" {
105
105
106
106
variable "additional_tags" {
107
107
description = " Additional tags to set on the RDS instance"
108
- type = map
108
+ type = map ( string )
109
109
default = {}
110
110
}
111
111
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " >= 0.12 "
2
+ required_version = " >= 0.13 "
3
3
required_providers {
4
- aws = " >= 2.45 .0"
4
+ aws = " >= 3.36 .0"
5
5
}
6
6
}
You can’t perform that action at this time.
0 commit comments