troposphere
troposphere copied to clipboard
troposphere - Python library to create AWS CloudFormation descriptions
It's just ATM, not ATM Machine. :)
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...
* 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...
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": 
Added missing "PolicyType" which does the association
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...
This should close #550 once merged
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...