About 47,500 results
Open links in new tab
  1. How can I quickly and effectively debug CloudFormation templates?

    AWS CloudFormation linter provides static analysis beyond aws cloudformation validate-template It informs which resource types and instance types are unavailable in certain regions, validates …

  2. Export AWS configuration as CloudFormation template

    I´m using AWS CLI and CloudFormation, and I could not find any reference in the documentation. Does anybody know if it´s possible to create a CloudFormation template from a current …

  3. How do I pass a list of strings as a parameter in CloudFormation?

    Aug 30, 2018 · 29 I've got a nested CloudFormation template which accepts a number of parameters from its root template to configure it. At the moment I'm only passing simple string …

  4. AWS: How to specify a boolean parameter in a CloudFormation …

    Jan 11, 2017 · I'm trying to specify a boolean parameter in a CloudFormation template so I can conditionally create resources based on a parameter passed in. Looking at the documentation …

  5. How to create a cloud formation template from an existing AWS …

    Mar 28, 2019 · 30 I have an existing aws infrastructure with VPC's, subnets, instances,etc. If I need to build the same infrastructure again in future is there any way to create a cloud …

  6. AWS cloud formation Template- providing Tags for the stack in …

    Dec 17, 2014 · 53 We wanted to use company specific Tags to the resources that we create in AWS for billing purposes. I am using a cloud formation template to spin up our …

  7. Difference between SAM template and Cloudformation template

    May 2, 2018 · I'm finding it hard to understand the difference between SAM template and Cloudformation template. I know that SAM template can be used to define Serverless …

  8. Renaming Resource in CloudFormation Template - Stack Overflow

    May 20, 2019 · Can you rename a resource in a CloudFormation template? Let's say I've created a stack template that creates a single lambda function. GetTheFunnyPhraseText: Type: …

  9. Template format error: unsupported structure seen in AWS …

    AWS CloudFormation is a tool used by developers for deploying apps in the cloud; e.g. Serverless apps on Amazon; AWS CFN is a declarative DSL with programming features; SF people …

  10. How can I replace some string in AWS CloudFormation

    Jul 4, 2019 · 0 There is no string manipulation capability in a CloudFormation template. Worst case, you could create a Lambda-backed Custom Resource that can transform parameters.