Skip to content

Commit

Permalink
Bump RDS module and CA Cert Identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeemster committed Jan 3, 2025
1 parent b02b681 commit 01c6205
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion terraform/aws/pipeline/default/target_postgres.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "postgres_loader_rds" {
source = "snowplow-devops/rds/aws"
version = "0.4.0"
version = "0.5.0"

count = var.postgres_db_enabled ? 1 : 0

Expand All @@ -14,6 +14,8 @@ module "postgres_loader_rds" {
publicly_accessible = var.postgres_db_publicly_accessible
additional_ip_allowlist = var.postgres_db_ip_allowlist

ca_cert_identifier = "rds-ca-rsa2048-g1"

tags = var.tags
}

Expand Down
4 changes: 3 additions & 1 deletion terraform/aws/pipeline/secure/target_postgres.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "postgres_loader_rds" {
source = "snowplow-devops/rds/aws"
version = "0.4.0"
version = "0.5.0"

count = var.postgres_db_enabled ? 1 : 0

Expand All @@ -14,6 +14,8 @@ module "postgres_loader_rds" {
publicly_accessible = false
additional_ip_allowlist = var.postgres_db_ip_allowlist

ca_cert_identifier = "rds-ca-rsa2048-g1"

tags = var.tags
}

Expand Down

0 comments on commit 01c6205

Please sign in to comment.