File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,10 @@ with custom values to setup a completely independent project:
7979 ```
80803 . Create the parameters for the test stage with
8181 ```
82+ aws ssm put-parameter --type "String" \
83+ --name "/app/aws-lambda-edge/test/appDomain" \
84+ --value "test.aws-lambda-edge.immutableweb.app"
85+
8286 aws ssm put-parameter --type "String" \
8387 --name "/app/aws-lambda-edge/test/assetDomain" \
8488 --value "test-assets.aws-lambda-edge.immutableweb.app"
Original file line number Diff line number Diff line change @@ -21,3 +21,4 @@ const formatReq = event => {
2121}
2222
2323exports . testHandler = createHandler ( 'test' )
24+ exports . prodHandler = createHandler ( 'prod' )
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ custom:
3636 domain : ${ssm:/app/${self:service}/domain}
3737 hostedZoneId : ${ssm:/app/${self:service}/hostedZoneId}
3838 certificateId : ${ssm:/app/${self:service}/certificateId}
39- appDomain : ${self:provider.stage}. ${self:custom.domain }
39+ appDomain : ${ssm:/app/${ self:service}/ ${self:provider.stage}/appDomain }
4040 assetDomain : ${ssm:/app/${self:service}/${self:provider.stage}/assetDomain}
4141 client :
4242 bucketName : ${self:custom.organization}-${self:service}
You can’t perform that action at this time.
0 commit comments