Hello @Gopinath Rajee ,
The data bricks cluster primary purpose is for computation in large volume of data. When you connect to the workspace, you are authenticating yourself against the workspace.
The commands you run are just a basic python command to print a text, these commands are not connecting to any storage / database to authenticate. Hence, the cluster process it and writes it in the console.
When you write code that fetches / writes data from any data storage, then the authentication has to be done from Databricks. For instance, when you read the data stored in storage account, then you can either authenticate via storage account keys or using AAD authentication. Similarly, when you connect to SQL server it can either be a sql authentication or AAD authentication (Azure based sql solutions only)
Accept this post as an answer if it helps
