I am faced with a challenge where the programmatic account does not have access to create resources. Usually serverless creates resources via Cloudformation by uploading a Cloudformation template and asking Cloudformation to create the stack. In this case, there will be no stack as such but the resources required will be already created for me. I want to deploy the lambda function and all code on the existing resources like API-gateway, S3 bucket, Lambda role, Lambda function which are already created manually.
Is it possible to bypass cloudformation ? Or Is it possible to mention all those resources in the serverless.yml with arn of each resource, where the serverless does not create a stack and just uploads the zip file to the S3 bucket and then unzips all code in the lambda function ?