troposphere icon indicating copy to clipboard operation
troposphere copied to clipboard

troposphere - Python library to create AWS CloudFormation descriptions

Results 129 troposphere issues
Sort by recently updated
recently updated
newest added

DO NOT MERGE THIS CHANGE - this is a WIP As mentioned in #1295, I'm prototyping ways to better auto-generate troposphere files from the AWS resource specification. This should then...

Future

* Assumes cloud-config.yaml is in same dir as script * Example substitutes hostname and FQDN * yaml file also uses cf-style template strings for dual usage * Modify Test runner...

examples

In order to use the "aws package" command, we need to be able to provide a file/folder path to the Function resource as a simple string value.

[Cloudformation documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype) says that "STEP_FUNCTION" is a valid task type. Troposphere's validators.py currently follows this. However, Cloudformation and the SSM console say that the correct string is "STEP_FUNCTIONS": ![image](https://user-images.githubusercontent.com/39393004/41699296-8f97e866-7566-11e8-8f33-ed3ba1da737d.png)

Added missing "PolicyType" which does the association

examples

Add dictionary parameter support for resources that use AWSHelperFn objects as properties. The resources can then be instantiated by using a python dictionary type instead of having to pass the...

Currently, using a Ref inside the Schema parameter to create a new apigateway.Model resource will result in an Exception from attempting to validate the dictionary via json.dumps(). This PR is...

Ref is now supported in the method from_file of helper file. Also added unit test Should address issue #724 @markpeek please review. I was able to successfully run userdata with...