💾 Archived View for cfdocs.wetterberg.nu › using-cfn-get-template.gemini captured on 2023-11-04 at 12:33:03. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-03)

-=-=-=-=-=-=-

Retrieving a template

Search

AWS CloudFormation stores the template you use to create your stack as part of the stack. You can retrieve the template from AWS CloudFormation using the https://docs.aws.amazon.com/cli/latest/reference/cloudformation/get-template.html command.

https://docs.aws.amazon.com/cli/latest/reference/cloudformation/get-template.html

The `aws cloudformation get-template` command returns the deleted stacks templates for up to 90 days after the stack has been deleted.

The following example shows the template for the `myteststack` stack:

 1. PROMPT> aws cloudformation get-template --stack-name myteststack
 2. {
 3.     "TemplateBody": {
 4.         "AWSTemplateFormatVersion": "2010-09-09",
 5.         "Outputs": {
 6.             "BucketName": {
 7.                 "Description": "Name of S3 bucket to hold website content",
 8.                 "Value": {
 9.                     "Ref": "S3Bucket"
10.                 }
11.             }
12.         },
13.         "Description": "AWS CloudFormation Sample Template S3_Bucket: Sample template showing how to create a publicly accessible S3 bucket. **WARNING** This template creates an S3 bucket.
14. You will be billed for the AWS resources used if you create a stack from this template.",
15.         "Resources": {
16.             "S3Bucket": {
17.                 "Type": "AWS::S3::Bucket",
18.                 "Properties": {
19.                     "AccessControl": "PublicRead"
20.                 }
21.             }
22.         }
23.     }
24. }

The output contains the entire template body, enclosed in quotation marks.