Salesforce Functions in CICD
Hi there!
A few words about Salesforce functions
Recently Salesforce enabled the option to create a compute environment related 1:1 with Salesforce org or Scratch org.
The main objective is to delegate some functions to another place than org and a cool thing is you can write code either in Java, JavaScript or TypeScript.
I won’t elaborate on the benefits or use cases here as there are already plenty of other articles where it is explained, like here in this official document
But in short, it is a Function as a Service, similar to AWS Lambda if you are familiar with this (but not that cool as Lambda though)
In this post, I will focus more on how to deploy functions rather than how to write them and use them within the apex. But another article addressing this topic may be created in the future so don’t forget to subscribe to our blog – https://beyondthecloud.dev/blog
So let’s say you had on hands experience with this, locally is working just fine but you want to include that as part of your CICD and use it in sandboxes and Production in a standardised way.
Here I am, I have been there and there are some caveats which I will disclose so you have a smooth implementation.
Salesforce Functions implementation
Salesforce Functions Prerequisites
- Make sure you have licences for functions in scratch orgs and sandboxes (assuming you already got this in Production – free trial https://functions.salesforce.com/signups/)
- In your org, from Setup, enter Functions in the Quick Find box and select Functions. In sandboxes toggle on "Enable Test Space". In Production, you will have 2 switches, for Sandboxes and Prod: "Enable Production Space"
- Scratch org feature for functions in config file
config/project-scratch-def.json
is added before creating an actual scratch org. Under the features list just add"Functions"
. - Click
Match Production Licenses
in sandboxes, you can find it inSetup > Company Information
- Get the right permissions
- Once licenses are there, you can assign appropriate permission to your user and integration user (used for CICD).
- Perm set will be called functions but you can Edit it and add
Compute Access
in theSystem permissions
section. There is also separate permissionCompute Production Access
. Otherwise, just add those permissions to any other permission set or profile.
So at this point, you should be all set and ready to create some compute environments. It should be easy, right? Right??
To some extent, yes.
Salesforce Functions Deployment
Regardless you are going to use Functions in Scratch Org / Sandbox / Production you should always start with points #1 and #2
Work in a git repository with DX project.
You cannot deploy only specific functions/part of functions. You will always deploy the whole functions folder.
In my case, a Production environment is set to be a DevHub.
- Authorize to DevHub org with Salesforce Functions enabled
sf login org --alias DEV_HUB_ORG_NAME --set-default-dev-hub
- Connect Your CLI Environment to Salesforce Functions (login with dev_hub_org credentials)
sf login functions
- Create a Compute Environment to deploy the functions and connect it to your designated org:
sf env create compute --connected-org=TARGET_ORG_NAME --alias=COMPUTE_TARGET_ENV_ALIAS
sf env list
- If you don’t have some functions in your local repository, create one
sf generate function -n myfunction -l javascript
- Commit changes
- There should be no changes that are pending to be committed in a whole repo, not only the functions folder.
git status
should return "nothing to commit, working tree clean"- Otherwise Functions deployment will fail
- Deploy the functions
sf deploy functions --connected-org=TARGET_ORG_NAME
- View Compute Environment Info and Logs
sf env display -e COMPUTE_TARGET_ENV_ALIAS
sf env log tail -e COMPUTE_TARGET_ENV_ALIAS
Integrating Salesforce Functions with CICD
Issues I have encountered
We will reuse the commands listed above but with little modifications.
- WARNING: There is/was a bug that when you log in to org and functions for the first time, you need to do it with the standard UI way (without jwt) to accept terms & conditions. It is a one-time action. If you have API only user you need to remove that permission for a moment.
- Use a connected app to authenticate with Dev Hub and functions
sf login org jwt --username DEV_HUB_USERNAME --keyfile pathToServer.key --clientid CONNECTED_APP_CLIENT_ID --set-default-dev-hub --alias DEV_HUB_ORG_NAME
sf login functions jwt --username DEV_HUB_USERNAME --keyfile pathToServer.key --clientid CONNECTED_APP_CLIENT_ID --set-default-dev-hub --alias DEV_HUB_ORG_NAME
- Create compute environment using the CICD already.
- It may already be fixed but I got an issue when I created compute environment in my local Visual Studio Code using the same user and same authentication method as CICD. However, this was failing due to some unknown exception. When I deleted compute environment and created one within the CICD process (in Jenkins pipeline directly) it worked.
- Checkout to branch, not the detached head
- When using Jenkins I came across an issue where I couldn’t deploy function as I wasn’t on a git branch, but a detached head. This is specific to the orchestrator you are using so that may not be an issue for you. The fix was to use this extension for the checkout method:
extensions: [[$class: 'LocalBranch', localBranch: "${branchToCheckout}"]
- When using Jenkins I came across an issue where I couldn’t deploy function as I wasn’t on a git branch, but a detached head. This is specific to the orchestrator you are using so that may not be an issue for you. The fix was to use this extension for the checkout method:
- It is recommended to first deploy functions and then deploy code. In my CICD I am doing a local merge, deploying the files that were modified, and when deployment is successful I am pushing that local merge to remote. Functions require a local branch without a detached head and that was my limitation. I moved the deployment of the functions after the deployment of the main code.
- There is a limit to Compute Environments you can create. It wasn’t documented but our license turned out to have a max of 25 compute environments. We hit a limit as the Scratch Org limit was 100. A workaround was to check in the pipeline if the functions folder was modified or needed at all to check the deployment. And we always delete compute environment and scratch org separately at the end of the job. When looking at the list of computing environments I saw some orphaned compute environments which is why I delete them separately.
Salesforce Functions Implementation steps
So with these modified commands, in CICD you will end up with the following steps depending on the target environment:
- Scratch Org: #1, #2, #3, #4, #6
- Sandboxes and Production: #1, #2, #5, #6
If you have some questions feel free to ask in the comment section below. 🙂
Was it helpful? Check out our other articles here.