cfn-pyplates icon indicating copy to clipboard operation
cfn-pyplates copied to clipboard

Amazon Web Services CloudFormation templates, generated with Python!

Results 8 cfn-pyplates issues
Sort by recently updated
recently updated
newest added

python 2 will not be maintened past January 2020. Some modifications is needed to support python 3.

Hello, I need this parameter to use fn:ImportValue function. Thank you.

I have not been able to export the output values of a template, as described in http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html I aim to get an ouptut section similar to ``` "Outputs" : {...

CFN now supports YAML output. It should be pretty simple to add a mechanism to output in this YAML format rather than JSON: https://aws.amazon.com/blogs/aws/aws-cloudformation-update-yaml-cross-stack-references-simplified-substitution/ Care needs to be taken with...

I have two resources that need a DependsOn statement. One works fine and adds brackets while the other does not and instead adds curly braces. Here is my resource that...

Please consider the following scenario: CFT.parameters.add(Parameter('AWS_EC2_Instance-Volume1', 'CommaDelimitedList', {'Default': options['AWS_EC2_Instance-Volume1']})) CFT.conditions.add(Condition('AWS_EC2_Instance-Volume1UsesIops', c_and(c_ref('AWS_EC2_Instance-NeedsVolume1'), c_equals(select('1', ref('AWS_EC2_Instance-Volume1')), 'io1')))) The YAML: AWS_EC2_Instance-Volume1: 0, standard, none, none, 0 The error I end up with is: raise...

It would very useful to be able to break large templates to small files and import them as necessary. Currently this doesn't seem to work, unless I play with the...

I added a function to functions.py that I'm hoping will be valuable to others using this library. Most of the code for it was lifted from: https://github.com/devstructure/python-cloudformation/blob/master/cloudformation/__init__.py#L66-L89 which I have...