I know that it's possible to use a CloudFormation template to launch a new EC2 instance in AWS and install any packages using user data.
But is there any way to connect to an existing instance and execute a shell file using the CloudFormation template?
Sadly, this is currently not possible in pure CloudFormatoin. To enable this, you would have to develope a [custom resource][1] in CloudFormation.
The resource would be in the form of a lambda function which would use AWS SDK to run SSM Run Command on your instance, provided that it was configured to work with SSM.
Alternatively, you could use tools such as Paraminko to ssh into the instance from the lambda function in your custom resource.