stacker
stacker copied to clipboard
An AWS CloudFormation Stack orchestrator/manager.
Working in a team that relies on stacker for most of our IaC code, keeping our dependency set up to date has been harder and harder over the last years,...
Deprecated aliases have been removed in python/cpython#28268
In my configuration, I want to dynamically lookup whether a stack is enabled, like... ``` my-stack: enabled: ${custom something} template_path: stacker/templates/my-template.yml.j2 ``` where my [lookup](https://stacker.readthedocs.io/en/latest/lookups.html#custom-lookup) (in this case `custom`) resolves...
Bumps [rsa](https://github.com/sybrenstuvel/python-rsa) from 4.5 to 4.7. Changelog Sourced from rsa's changelog. Version 4.7 - released 2021-01-10 Fix #165: CVE-2020-25658 - Bleichenbacher-style timing oracle in PKCS#1 v1.5 decryption code Add padding...
Troposphere updated the underlying method name to be `set_description()` instead of `add_description()`. Without patching this behavior, setting a description on the top-level config file is unusable with the latest version...
If I have a stacker definition that includes a description, like ``` stacks: - name: myStack class_path: ... stack_name: ... description: My lovely stack region: ... ``` I get the...
For some reason, my changesets are taking a while to complete, which results in stacker failing with: stack: failed (Changeset 'arn:aws:cloudformation:eu-west-1:000000000000:changeSet/change-set-0000000000/dsfjlkdjflafadsfa-kdjfgksjfgds-dsfksjdfgk' did not reach a completed state.) I had a...
Make hooks "first-class" citizens in the Stacker execution engine, allowing them to depend on/be depended upon by stacks and targets. This is not yet 100% complete, but I'm posting to...
Decrypted string is returned as b'text' which should be decoded to utf-8.
We have a multi-account setup and want to upload lambda code to a bucket in a different account where the stack will execute. Is it possible to add the ability...