mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
27 lines
396 B
Markdown
27 lines
396 B
Markdown
# Info
|
|
|
|
```
|
|
serverless info
|
|
```
|
|
|
|
Displays information about the service.
|
|
|
|
## 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.
|
|
|
|
|
|
## Provided lifecycle events
|
|
- `info:info`
|
|
|
|
## Examples
|
|
|
|
```
|
|
$ serverless info
|
|
|
|
service: my-service
|
|
stage: dev
|
|
region: us-east-1
|
|
|
|
```
|