We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd113f5 commit 995bb50Copy full SHA for 995bb50
compose-multiframework/serverless-compose.yml
@@ -7,13 +7,14 @@
7
# Deployments happen in parallel by default. You can also share outputs from one Service to another, across template types.
8
# In this case, Compose will auto-determine the correct order to deploy each Service.
9
10
+# Example stage-specific parameters you might need in your services.
11
stages:
12
default:
13
params:
- domain: "serverless.dev"
14
+ domain: "dev-api.acmeinc.com" # This is the value of the "domain" param in the dev stage
15
prod:
16
- domain: "serverless.com"
17
+ domain: "prod-api.acmeinc.com" # This is the value of the "domain" param in the prod stage
18
19
services:
20
# Framework: AWS CloudFormation
0 commit comments