Skip to content

Commit

Permalink
Update stack-dependencies.md
Browse files Browse the repository at this point in the history
  • Loading branch information
akmal-spacelift committed Jan 6, 2025
1 parent c069ac8 commit e595ecd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/concepts/stack/stack-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,3 +361,14 @@ You might notice the three destructors at the end. They don't do anything yet, b
- Destroys the grandchild stack (`app`) **and** its resources
- Destroys the parent stack (`infra`) **and** its resources
- Finally, destroys the grandparent stack (`vpc`) **and** its resources

## Troubleshooting

If you're adding a large number of data sources to the parent stack and pushing them as an output you might get an error like this:
```
argument list too long
```

This is because one cannot have more than 128kB in any given argument. This is hard-coded in the kernel and difficult to work around.

Depending on your use case it may be possible to work around this issue by using the [Spacelift Terraform Provider](../../vendors/terraform/terraform-provider.md) resources spacelift_mounted_file along with spacelift_run.

0 comments on commit e595ecd

Please sign in to comment.