This avoids a situation where the reader endpoint tries to use coalesce(null, null, null) when in cluster mode and instead uses the configuration endpoint.
why
When using cluster mode there is no reader endpoint so the output tries to use coalesce(null, null, null) which results in a plan error. As outlined in the AWS docs the config endpoint should be used instead when in cluster mode.
what
This avoids a situation where the reader endpoint tries to use
coalesce(null, null, null)
when in cluster mode and instead uses the configuration endpoint.why
When using cluster mode there is no reader endpoint so the output tries to use
coalesce(null, null, null)
which results in a plan error. As outlined in the AWS docs the config endpoint should be used instead when in cluster mode.references
Closes #236