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

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...

examples

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),...

examples

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",...

cfn2py

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...

enhancement
cfn2py

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" :...

cfn2py

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...

cfn2py

It doesn't wrap it and/or convert to MetricDimension and leaves just a dictionary instead

cfn2py

I have a line that does exceed the 80 character limit...

cfn2py

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...

cfn2py