troposphere
troposphere copied to clipboard
troposphere - Python library to create AWS CloudFormation descriptions
Would be nice to have an S3 bucket WebsiteConfiguration with redirect sample. Something that is done commonly for me is using route 53 and s3 to create a redirect. This...
I'm trying to reconcile this: ``` python class PrimaryKey(AWSProperty): props = { 'HashKeyElement': (Element, True), 'RangeKeyElement': (Element, False), } class Table(AWSObject): type = "AWS::DynamoDB::Table" props = { 'KeySchema': (PrimaryKey, True),...
It would seem I have the best CF template ever for testing `cfn2py`. The script is now returning this error: ``` NatSecurityGroup = t.add_resource(SecurityGroup( "NatSecurityGroup", VpcId=Ref(MyVpc), GroupDescription="NAT VPC security group",...
Hi, nice work! This is not an issue, just a question: is there a template to troposphere source tool (the inverse of troposphere)? I notice that the troposphere examples are...
Would there be value in loading my json here and letting someone work through specific issues? Is there currently working going on with cfn2py ? Here's the first error from...
Causes like this cause cfn2py to fail. ``` "ZippySecurityGroup" : { "Type" : "AWS::EC2::SecurityGroup", "Properties" : { "GroupDescription" : "Enable HTTP access via port 80 and SSH access", "SecurityGroupIngress" :...
I have a template that stands up a VPC, subnets and, route tables, IGW, etc. Running it through cnf2py causes the following crash: ``` Traceback (most recent call last): File...
It doesn't wrap it and/or convert to MetricDimension and leaves just a dictionary instead
I have a line that does exceed the 80 character limit...
The output Python script fails to run when there are tags with spaces in the key name: ``` Tags=Tags( Customer="XXX", environment="production", Patch Group="b", application="infra", Name="YYY", ), ``` Gives me: File...