-
Notifications
You must be signed in to change notification settings - Fork 73
CloudFormation Output count is greater than max allowed 60 #133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
this seems to be related to #123 |
Basically this stack trace,
All these logics should have the migration logics included above, .then(() => this.replaceReferences())
.then(() => this.replaceOutputs())
.then(() => this.replaceConditions())
.then(() => this.mergeStackResources())
.then(() => this.sequenceStacks()) I am currently deciding if I should hard fork this, or make a huge refactor PR that is almost asking for a grinding halt. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using Serverless-split-stacks plugin, we try to split the stacks using two options:
i) perType
ii) perFunction
i) Using perType option, we receive - "The CloudFormation template is invalid: Template error: instance of Fn::GetAtt references undefined resource CheckIntegrationEventsRuleSchedule1" error.
ii) Using perFunction option, we receive - "The CloudFormation template is invalid: Template format error: Unresolved resource dependencies [IamRoleLambdaExecution] in the Resources block of the template" error.
Queries:
i) How we can validate serverless.yml on local server? Please elaborate.
ii) Is there something else we need to do on aws console to resolve cloud formation template related issues.
The text was updated successfully, but these errors were encountered: