SN_INSTANCE, SN_USER, and SN_PASS from a .env file in the current directory. This file should never be committed to version control.Connect to your ServiceNow instance
SN_INSTANCE, SN_USER, and SN_PASS from a .env file in the current directory. This file should never be committed to version control.Create a `.env` file with your instance credentials.
cat > .env << 'EOF'
SN_INSTANCE=https://your-instance.service-now.com
SN_USER=admin
SN_PASS=your-password
EOFTest the connection by fetching a system property.
sn get sys_properties "name=glide.servlet.uri" --fields valueExplore table structures on your instance