troposphere
troposphere copied to clipboard
troposphere - Python library to create AWS CloudFormation descriptions
Thanks to all troposphere contributors! Amazon just introduced AWS SAM https://aws.amazon.com/about-aws/whats-new/2016/11/introducing-the-aws-serverless-application-model/ This will simplify defining serverless applications with cloudformation. What would be the plan to support SAM in troposphere. I...
Due to the fact that the classes have dynamically generated fields for the AWS resource properties, IDEs like PyCharm doesn't suggest those fields during autocompletion. For example: ```Python from troposphere...
As per the spec, this property is: ``` "AWS::ECR::ReplicationConfiguration.ReplicationConfiguration": { "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-replicationconfiguration.html", "Properties": { "Rules": { "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-replicationconfiguration.html#cfn-ecr-replicationconfiguration-replicationconfiguration-rules", "UpdateType": "Mutable", "Required": true, "Type": "List", "ItemType": "ReplicationRule" } } } ```...
Wanted to start an issue to discuss goals for troposphere 3.0: - [All core code gets generated from the resource specs](https://github.com/cloudtools/troposphere/issues/618) - [Python 3+](https://github.com/cloudtools/troposphere/issues/1295) (remove the EOL python2 support) -...
Real confusion here... :( Using: troposphere 2.3.1 awacs 0.8.0 Installed with "pip install troposphere[policy]" I am attempting to add multiple policies to a iam.role. I have tried several different varieties...
# Summary Setup `poetry` to manage project dependencies, build, and publish. # What Changed ## Added - added configuration for `poetry` - to support the `scripts` arg of `setuptools.setup()`, will...
Fixes https://github.com/cloudtools/troposphere/issues/1834
AWS CloudFormation validates the List Number parameter value as numbers. See: - https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html
Macro adds the possibility to directly create a Cloudformation stack from Troposphere Code. Just add your resources to macro_template object, the template object is created by macro itself. You can...
This fixes an issue with cfn-flip that incorrectly translates JSON for a step function as documented below: https://github.com/awslabs/aws-cfn-template-flip/pull/80