Thanks, using the ACS-cli, I was able to deploy my app to my Splunk Cloud Platform instance. For reference, here is a powershell code snippet to deploy such app: # Set up splunk account for app validation with appinspect.splunk.com $env:SPLUNK_USERNAME = "
[email protected]" $env:SPLUNK_PASSWORD = (Get-Credential -Message a -UserName a).GetNetworkCredential().Password acs.exe config add-stack <nameofthestack> --target-sh <nameofsearchhead> acs.exe config use-stack <nameofthestack> --target-sh <nameofsearchhead> acs.exe login acs.exe --verbose apps install private --acs-legal-ack Y --app-package .\path\to\my-custom-app-latest.tar.gz
... View more