• Documentation
  • Pricing
© 2026 Serverless, Inc. All rights reserved.

Framework

  • Overview
  • Documentation
  • Plugins360
  • Pricing

Learn

  • Blog
  • GuidesUpdated
  • Examples240
  • Courses

Resources

  • Support
  • Security
  • Trust Center
  • Status

Community

  • Slack
  • GitHub47k
  • Forum
  • Meetups

Company

  • About
  • Careers
  • Contact
  • Partners

Legal

  • Terms of Service
  • Privacy Policy
  • Trademark
  • DMCA
Serverless Framework Logo

Serverless Framework

Intro
SetupUpgrading To V4ConceptsTutorialAWS CredentialsLicense Keys
DeployingPackagingBuildingTestingServicesFunctions
OverviewHTTP (API Gateway v2)REST (API Gateway v1)ActiveMQApplication Load BalancerAlexa SkillAlexa Smart HomeCloudWatch EventCloudWatch LogCloudFrontCognito User PoolEventBridge EventIoTIoT Fleet ProvisioningKafkaKinesis & DynamoDBMSKRabbitMQS3ScheduleSNSSQSWebsocket
LayersManaged InstancesAlertsVersion PruningDomainsIAM Function PermissionsParameters
OverviewSelf-reference serverless.ymlServerless CoreEnvironment VariablesCLI OptionsExternal YAML/JSON FilesJavascript propertiesGitDoppler
OverviewS3 ObjectsSSM Parameter Store & Secrets ManagerCloudFormation Stack Outputs
OverviewVaultTerraform State Output
ResourcesComposing ServicesDeployment BucketStatePython support
OverviewRuntimeGatewayMemoryBrowserCode InterpreterDev Mode
API Gateway Proxy
OverviewGeneral ConfigurationAuthenticationAPI KeysData SourcesResolversPipeline FunctionsCachingDelta SyncCustom DomainWAFCLI Commands
Deploying SAM/CFN TemplatesWorkflow Tips
OverviewCreating PluginsCLI OutputCustom CommandsCustom VariablesExtending the Configuration schemaExtending and overriding configuration
OverviewDashboardAxiom
Overviewdeploydeploy functiondeploy listdevdiffinfoinvokeinvoke localloginlogin awslogin aws ssologsmetricspackageplugin installplugin uninstallprintprunereconcileremoverollbackrollback functionsupportusage
Overview
OverviewMetricsTracesTroubleshoot
OverviewNode.jsPython
OutputsProviders
OverviewBranch DeploymentsPreview DeploymentsCustom ScriptsTestingPrivate PackagesNotificationsMono ReposDeploy in your own CI/CDBest PracticesTroubleshootingFAQ
OverviewSetupToolsAWS Integration
Serverless.yml Reference
Examples and TutorialsConfiguration Validation
  1. CLI Reference
  2. Info

AWS - Info

Displays information about the deployed service.

serverless info

Options

  • --stage or -s The stage in your service you want to display information about.
  • --region or -r The region in your stage that you want to display information about.
  • --aws-profile The AWS profile you want to use.
  • --json Output the information in JSON format.
  • --verbose Shows displays any Stack Output.

Provided lifecycle events

  • info:info

Examples

AWS

On AWS the info plugin uses the Outputs section of the CloudFormation stack and the AWS SDK to gather the necessary information. See the example below for an example output.

Example:

$ serverless info

Service Information
service: my-serverless-service
stage: dev
region: us-east-1
api keys:
  myKey: some123valid456api789key1011for1213api1415gateway
endpoints:
  GET - https://dxaynpuzd4.execute-api.us-east-1.amazonaws.com/dev/users
functions:
  my-serverless-service-dev-hello

Verbose

When using the --verbose flag, the info command will also append all Stack Outputs to the output:

$ serverless info --verbose

Service Information
service: my-serverless-service
stage: dev
region: us-east-1
api keys:
  myKey: some123valid456api789key1011for1213api1415gateway
endpoints:
  GET - https://dxaynpuzd4.execute-api.us-east-1.amazonaws.com/dev/users
functions:
  my-serverless-service-dev-hello

Stack Outputs
CloudFrontUrl: d2d10e2tyk1pei.cloudfront.net
ScreenshotBucket: dev-svdgraaf-screenshots
ServiceEndpoint: https://12341jc801.execute-api.us-east-1.amazonaws.com/dev
ServerlessDeploymentBucketName: lambda-screenshots-dev-serverlessdeploymentbucket-15b7pkc04f98a

JSON

When using the --json flag, the info command will output the information in JSON format:

$ serverless info --json

{
  "info": {
    "functions": [
      {
        "name": "hello",
        "deployedName": "my-serverless-service-dev-hello"
      }
    ],
    "layers": [],
    "endpoints": [
      "httpApi: https://mnpgyjhfqj.execute-api.us-east-1.amazonaws.com"
    ],
    "service": "my-serverless-service",
    "stage": "dev",
    "region": "us-east-1",
    "stack": "my-serverless-service-dev",
    "resourceCount": 4,
    "apiKeys": []
  },
  "outputs": [
    {
      "OutputKey": "HelloLambdaFunctionQualifiedArn",
      "OutputValue": "arn:aws:lambda:us-east-1:012345678901:function:my-serverless-service-dev-hello:26",
      "Description": "Current Lambda function version",
      "ExportName": "sls-my-serverless-service-dev-hello-HelloLambdaFunctionQualifiedArn"
    },
    {
      "OutputKey": "ServerlessDeploymentBucketName",
      "OutputValue": "serverless-framework-deployments-us-east-1-d7b2bf38-2784",
      "ExportName": "sls-my-serverless-service-dev-ServerlessDeploymentBucketName"
    },
    {
      "OutputKey": "HttpApiId",
      "OutputValue": "mnpgyjhfqj",
      "Description": "Id of the HTTP API",
      "ExportName": "sls-my-serverless-service-dev-HttpApiId"
    },
    {
      "OutputKey": "HttpApiUrl",
      "OutputValue": "https://mnpgyjhfqj.execute-api.us-east-1.amazonaws.com",
      "Description": "URL of the HTTP API",
      "ExportName": "sls-my-serverless-service-dev-HttpApiUrl"
    }
  ]
}
Edit this page
Prev diffNextinvoke

Contents

  • AWS - Info
  • Options
  • Provided lifecycle events
  • Examples
  • AWS
  • Verbose
  • JSON

Related

GuidesPluginsExamplesSlack CommunitySupport