-
-
Notifications
You must be signed in to change notification settings - Fork 178
Description
Describe the Bug
In version 0.38.7
you could specify different subnets for the replicas. This would result in a db subnet group being created specifically for the replica and assigned to it:
In version 0.38.8
this is no longer possible due to the logic introduced in PR #142
Now a replica configuration will always evaluate to null
, which in my case causes the replica to take on the DB subnet group of the primary instance.
Use case
Adobe Experience Platform Postgres Connector requires a publicly accessible database, so we have decided to create a replica in a public subnet, while the primary is in the private subnet. Version 0.38.7
allows this configuration and works, while version 0.38.8
does not.
Expected Behavior
I expect that when I specify subnets to the module, a DB subnet will be created and assigned to the replica.
Steps to Reproduce
Module configuration:
module "rds_replica_analytics" {
source = "cloudposse/rds/aws"
version = "0.38.7"
context = module.default_label.context
name = "analytics"
attributes = ["db", "readonly"]
# Instance config
replicate_source_db = module.rds_instance.instance_id
instance_class = "db.t4g.micro"
storage_type = "gp2"
storage_encrypted = true
kms_key_arn = aws_kms_key.kms_rds_key.arn
publicly_accessible = true
auto_minor_version_upgrade = false
allow_major_version_upgrade = false
apply_immediately = true
skip_final_snapshot = true
copy_tags_to_snapshot = true
backup_retention_period = 2
backup_window = "02:30-03:30"
maintenance_window = "mon:03:30-mon:04:30"
enabled_cloudwatch_logs_exports = ["postgresql"]
# Network config
vpc_id = module.vpc.vpc_id
subnet_ids = module.dynamic_subnets.public_subnet_ids // version `0.38.8` now ignores this
dns_zone_id = module.core_zone.zone_id
host_name = "db-replica"
allowed_cidr_blocks = var.rds_replica_allowed_cidrs
security_group_ids = [module.bastion.security_group_id]
# Database config
db_parameter_group = "postgres14"
database_port = 5432
# Should not be needed, bug in module PR
engine = "postgres"
engine_version = "14.2"
}