This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Description
Hey!
I was testing this plugin and it works great, but I found one use case, that is not supported.
I would like to import common base serverless.yml file in each stack and in some cases, I may want to overwrite some of the imported keys values. Example:
/serverless.yml
provider:
aws: aws
runtime: nodejs10.x
memory: 128
/childStack/serverless.yml
custom:
import: ../serverless.yml
provider:
memory: 256
Is this possible to achieve this using this plugin?