In Crossplane it is simple to write Connection details of an SQL Instance to a Kubernetes Secret:
apiVersion: database.gcp.crossplane.io/v1beta1
kind: CloudSQLInstance
metadata:
name: test-db
[OMITTED...]
spec:
forProvider:
[OMITTED...]
writeConnectionSecretToRef:
namespace: org
name: test-db-secret
This writes Connection details to a Kubernetes Secret, so that they can be referenced by Deployments.
How to do this using Config Connector? Am I missing something?