Unable to use custom DB secrets for managed DB

Hello everybody.
While deploying latest version of AWX I get stuck with awx-manager stdout log quoted below, please take a look ( tail ):

[installer : Store Database Configuration] ********************************\r\ntask path: /opt/ansible/roles/installer/tasks/database_configuration.yml:135\nfatal: [localhost]: FAILED! => {"censored": "the output has been hidden due to the fact that ‘no_log: true’ was specified for this result"}\n\r\nPLAY RECAP *********************************************************************\r\nlocalhost : ok=30 changed=0 unreachable=0 failed=1 skipped=18 rescued=0 ignored=0 \r\n\n",“job”:“2816774644978550448”,“name”:“awx”,“namespace”:“awx-namespace”,“error”:“exit status 2”}
----- Ansible Task Status Event StdOut (awx.ansible.com/v1beta1, Kind=AWX, awx/awx-namespace) -----

PLAY RECAP *********************************************************************
localhost : ok=30 changed=0 unreachable=0 failed=1 skipped=18 rescued=0 ignored=0

Hi folks!

I finally get it.
“Store Database Configuration” play error occures when secret manifest does not include those host and port and database (in my case) key-value pairs.

Not obvious! If i need my db instance to be managed by Operator then the “host” and the “port” strings are excessive here.

Finally, that works fine:

cat > $DEPLOYMENT <<EOF
---
apiVersion: v1
kind: Secret
metadata:
name: $PGSECRETNAME
namespace: $NAMESPACE
stringData:
host: awx-postgres
port: "5432"
database: awx
username: awx
password: $PGPASSWORD
type: managed
type: Opaque

Conclusion:
Each of: host, port, database, username and password should be defined for type: managed secret.

Thank you for your time!