Adding certificate id to primary and replica RDS instances#24
Adding certificate id to primary and replica RDS instances#24WilliamAvila wants to merge 1 commit intov3-updatesfrom
Conversation
| variable "ca_cert_id" { | ||
| type = string | ||
| description = "Certificate authority for RDS database" | ||
| default = "rds-ca-rsa2048-g1" |
There was a problem hiding this comment.
When a new database is created on RDS, AWS already defines a default certificate authority. The default certificate currently is the same as we're defining here. However, if AWS changes that default certificate to something else, we will accidentally override the recommended default.
I think this is a rare case where we would just manually make the change on the console and not worry about reflecting that change on Terraform. Or, if we want to be able to override the certificate, I would think it would be better to not set a default here (what happens if we set the default to "null"? Would it pick RDS' default?).
What do you think, @OlamideOl1 @WilliamAvila?
There was a problem hiding this comment.
I raised #29 for that, but I didn't have a chance to test what happens when creating a new database
No description provided.