For bug reports:
service: MyService
details:
deploymentBucket: s3_my_bucket
provider:
name:aws
deploymentBucket: ${self:details.deploymentBucket}
stage: dev
@gandhi-jay
details
section can not be defined on the top level. You can use custom
section to do what you want. Here is the document for this and example as follow.
https://serverless.com/framework/docs/providers/aws/guide/variables/
service: MyService
custom:
deploymentBucket: s3_my_bucket
provider:
name: aws
deploymentBucket: ${self:custom.deploymentBucket}
stage: dev
Could you try again?
@horike37 Works fine. Thank you.
Thanks for lending a helping hand here @horike37 馃檶
Glad to hear that this resolves your problem @gandhi-jay 馃憤
Most helpful comment
@horike37 Works fine. Thank you.