├── 1-1 CF Essentials ├── EC2withSG.json └── readme ├── 1-3 intro to yaml ├── EC2withSG.yaml ├── readme └── yamlintro.yaml ├── 1-4 CF and IAM ├── EC2withSG.json └── exampleCFPolicies.json ├── 10-1-Troubleshooting └── Logs2CloudWatch.json ├── 2-1 Template Format ├── 2-1 resource.json ├── 2-1 resource.yaml └── s3resourceExample.json ├── 2-10-CFBestPract └── 2-10-tempbestpractice.yaml ├── 2-2 TemplateSections ├── 2-2 lampstack.yaml └── LampStack.json ├── 2-3 Intrinsic ├── CF_WordPress_Blog.json └── LampStack.json ├── 2-5 Condition ├── conditionSnippets.json ├── prodCondition.json ├── prodCondition.yaml ├── resourceCondition.json └── resourceCondition.yaml ├── 2-7 CF Designer └── LampStack.json ├── 2-9 CF and VPCs ├── ALBwASG.json └── Template Checklist.docx ├── 3-1-StacksIntro ├── EC2withSG.json └── EC2withSG.yaml ├── 3-10-Guardrails └── LampStack.json ├── 3-2 Stack Details ├── EC2withSG.json ├── readme └── wordpress-single-instance.yaml ├── 3-3 Protecting Stacks ├── EC2withSG.json ├── EC2withSG.yaml ├── iam4CF.json └── stackpolicyexamples.json ├── 3-4 Rollback Triggers └── dynamoDBSecondary.json ├── 3-5 AWS Config └── EC2withSG.json ├── 3-6 Drift Detection └── LampStack.json ├── 3-6 vpc endpoint └── vpcendpointS3.yaml ├── 4-1 Updating Stacks └── LampStack.json ├── 4-2 DeeperUpdate ├── LampStack.json └── stackpolicy.json ├── 4-3 Change Set └── changesetdemo.json ├── 4-4 CrossStack ├── crossstackapp.json └── crossstacknetwork.json ├── 4-4 Nested Stacks ├── crossstacknetwork.json ├── readme └── s3bucket.json ├── 6-1 Bootstrapping └── LampStack.json ├── 6-2 Wait Condition └── waitcondition.yaml ├── 6-3 Creation Policy └── LampStack.json ├── 6-4 Update Policy ├── rollingupdate.json └── updatepolicysnippets.json ├── 6-5 Helper Scripts ├── LampStack.json └── wordpress-single-instance.yaml ├── 6-6 HelperWalkthrough └── LampStack.json ├── 6-7-ParameterStore ├── EC2withSG.json └── readme ├── 6-8-DynamicReferences ├── S3Retain.yaml └── index.html ├── 6-9 SecretsManager ├── secrets.yaml └── secretsSnippet.json ├── 7-1-CustomResources ├── AMILook.json └── IAMpwdCheck.yaml ├── 7-3-ExampleAMISelect ├── AMILook .json └── amilookup.js ├── 7-4-pwdChecker ├── IAMOriginal.yaml └── IAMpwdCheck.yaml ├── 7-5-SAM ├── lambda_function.py ├── output.yaml └── template.yaml ├── 8-2-IntroToStackSets ├── AWSCloudFormationStackSetAdministrationRole (1).yml ├── AWSCloudFormationStackSetExecutionRole.yml └── readme ├── 8-3-CreateStackSets └── S3retain.json ├── 8-4-UpdateStackSets └── S3noretain.json ├── 8-6-Override └── readme ├── 9-1-Pipeline └── test-stack-configuration.json ├── 9-2-PipelineP2 ├── basicpipeline.yml └── wordpress-single-instance.yaml └── Labs ├── CF Designer └── BasicWebServerInVPC (2).template ├── CF with AWS Config ├── awsconfigrule.json ├── badSG.json └── goodSG.json ├── Condition Functions ├── Lab1_VPC.json ├── hints.json └── vpctenancy.json ├── CrossStack ├── crossstack.json └── crossstackapp.json ├── DriftDetection ├── afterdriftupdate.json └── ec24drift.json ├── NestedStacks ├── index.html ├── multinest.json ├── noretain.json ├── root.json └── s3static.json ├── TemplateAnatomy ├── Template_Anatomy2.yaml ├── readme ├── templateAnatomy.json └── templateAnatomy.yaml ├── TemplatesAndStacks ├── Lab1Dynamo.json ├── Lab1_S3Retain.json ├── Lab1_VPC.json └── index.html └── UpdateStack ├── LampStack.json └── changeset.json /1-1 CF Essentials/EC2withSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/1-1 CF Essentials/EC2withSG.json -------------------------------------------------------------------------------- /1-1 CF Essentials/readme: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /1-3 intro to yaml/EC2withSG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/1-3 intro to yaml/EC2withSG.yaml -------------------------------------------------------------------------------- /1-3 intro to yaml/readme: -------------------------------------------------------------------------------- 1 | tttt 2 | -------------------------------------------------------------------------------- /1-3 intro to yaml/yamlintro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/1-3 intro to yaml/yamlintro.yaml -------------------------------------------------------------------------------- /1-4 CF and IAM/EC2withSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/1-4 CF and IAM/EC2withSG.json -------------------------------------------------------------------------------- /1-4 CF and IAM/exampleCFPolicies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/1-4 CF and IAM/exampleCFPolicies.json -------------------------------------------------------------------------------- /10-1-Troubleshooting/Logs2CloudWatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/10-1-Troubleshooting/Logs2CloudWatch.json -------------------------------------------------------------------------------- /2-1 Template Format/2-1 resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-1 Template Format/2-1 resource.json -------------------------------------------------------------------------------- /2-1 Template Format/2-1 resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-1 Template Format/2-1 resource.yaml -------------------------------------------------------------------------------- /2-1 Template Format/s3resourceExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-1 Template Format/s3resourceExample.json -------------------------------------------------------------------------------- /2-10-CFBestPract/2-10-tempbestpractice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-10-CFBestPract/2-10-tempbestpractice.yaml -------------------------------------------------------------------------------- /2-2 TemplateSections/2-2 lampstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-2 TemplateSections/2-2 lampstack.yaml -------------------------------------------------------------------------------- /2-2 TemplateSections/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-2 TemplateSections/LampStack.json -------------------------------------------------------------------------------- /2-3 Intrinsic/CF_WordPress_Blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-3 Intrinsic/CF_WordPress_Blog.json -------------------------------------------------------------------------------- /2-3 Intrinsic/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-3 Intrinsic/LampStack.json -------------------------------------------------------------------------------- /2-5 Condition/conditionSnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-5 Condition/conditionSnippets.json -------------------------------------------------------------------------------- /2-5 Condition/prodCondition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-5 Condition/prodCondition.json -------------------------------------------------------------------------------- /2-5 Condition/prodCondition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-5 Condition/prodCondition.yaml -------------------------------------------------------------------------------- /2-5 Condition/resourceCondition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-5 Condition/resourceCondition.json -------------------------------------------------------------------------------- /2-5 Condition/resourceCondition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-5 Condition/resourceCondition.yaml -------------------------------------------------------------------------------- /2-7 CF Designer/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-7 CF Designer/LampStack.json -------------------------------------------------------------------------------- /2-9 CF and VPCs/ALBwASG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-9 CF and VPCs/ALBwASG.json -------------------------------------------------------------------------------- /2-9 CF and VPCs/Template Checklist.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/2-9 CF and VPCs/Template Checklist.docx -------------------------------------------------------------------------------- /3-1-StacksIntro/EC2withSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-1-StacksIntro/EC2withSG.json -------------------------------------------------------------------------------- /3-1-StacksIntro/EC2withSG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-1-StacksIntro/EC2withSG.yaml -------------------------------------------------------------------------------- /3-10-Guardrails/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-10-Guardrails/LampStack.json -------------------------------------------------------------------------------- /3-2 Stack Details/EC2withSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-2 Stack Details/EC2withSG.json -------------------------------------------------------------------------------- /3-2 Stack Details/readme: -------------------------------------------------------------------------------- 1 | trttg 2 | -------------------------------------------------------------------------------- /3-2 Stack Details/wordpress-single-instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-2 Stack Details/wordpress-single-instance.yaml -------------------------------------------------------------------------------- /3-3 Protecting Stacks/EC2withSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-3 Protecting Stacks/EC2withSG.json -------------------------------------------------------------------------------- /3-3 Protecting Stacks/EC2withSG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-3 Protecting Stacks/EC2withSG.yaml -------------------------------------------------------------------------------- /3-3 Protecting Stacks/iam4CF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-3 Protecting Stacks/iam4CF.json -------------------------------------------------------------------------------- /3-3 Protecting Stacks/stackpolicyexamples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-3 Protecting Stacks/stackpolicyexamples.json -------------------------------------------------------------------------------- /3-4 Rollback Triggers/dynamoDBSecondary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-4 Rollback Triggers/dynamoDBSecondary.json -------------------------------------------------------------------------------- /3-5 AWS Config/EC2withSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-5 AWS Config/EC2withSG.json -------------------------------------------------------------------------------- /3-6 Drift Detection/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-6 Drift Detection/LampStack.json -------------------------------------------------------------------------------- /3-6 vpc endpoint/vpcendpointS3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/3-6 vpc endpoint/vpcendpointS3.yaml -------------------------------------------------------------------------------- /4-1 Updating Stacks/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/4-1 Updating Stacks/LampStack.json -------------------------------------------------------------------------------- /4-2 DeeperUpdate/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/4-2 DeeperUpdate/LampStack.json -------------------------------------------------------------------------------- /4-2 DeeperUpdate/stackpolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/4-2 DeeperUpdate/stackpolicy.json -------------------------------------------------------------------------------- /4-3 Change Set/changesetdemo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/4-3 Change Set/changesetdemo.json -------------------------------------------------------------------------------- /4-4 CrossStack/crossstackapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/4-4 CrossStack/crossstackapp.json -------------------------------------------------------------------------------- /4-4 CrossStack/crossstacknetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/4-4 CrossStack/crossstacknetwork.json -------------------------------------------------------------------------------- /4-4 Nested Stacks/crossstacknetwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/4-4 Nested Stacks/crossstacknetwork.json -------------------------------------------------------------------------------- /4-4 Nested Stacks/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/4-4 Nested Stacks/readme -------------------------------------------------------------------------------- /4-4 Nested Stacks/s3bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/4-4 Nested Stacks/s3bucket.json -------------------------------------------------------------------------------- /6-1 Bootstrapping/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-1 Bootstrapping/LampStack.json -------------------------------------------------------------------------------- /6-2 Wait Condition/waitcondition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-2 Wait Condition/waitcondition.yaml -------------------------------------------------------------------------------- /6-3 Creation Policy/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-3 Creation Policy/LampStack.json -------------------------------------------------------------------------------- /6-4 Update Policy/rollingupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-4 Update Policy/rollingupdate.json -------------------------------------------------------------------------------- /6-4 Update Policy/updatepolicysnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-4 Update Policy/updatepolicysnippets.json -------------------------------------------------------------------------------- /6-5 Helper Scripts/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-5 Helper Scripts/LampStack.json -------------------------------------------------------------------------------- /6-5 Helper Scripts/wordpress-single-instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-5 Helper Scripts/wordpress-single-instance.yaml -------------------------------------------------------------------------------- /6-6 HelperWalkthrough/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-6 HelperWalkthrough/LampStack.json -------------------------------------------------------------------------------- /6-7-ParameterStore/EC2withSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-7-ParameterStore/EC2withSG.json -------------------------------------------------------------------------------- /6-7-ParameterStore/readme: -------------------------------------------------------------------------------- 1 | sgddfgfgd 2 | -------------------------------------------------------------------------------- /6-8-DynamicReferences/S3Retain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-8-DynamicReferences/S3Retain.yaml -------------------------------------------------------------------------------- /6-8-DynamicReferences/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-8-DynamicReferences/index.html -------------------------------------------------------------------------------- /6-9 SecretsManager/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-9 SecretsManager/secrets.yaml -------------------------------------------------------------------------------- /6-9 SecretsManager/secretsSnippet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/6-9 SecretsManager/secretsSnippet.json -------------------------------------------------------------------------------- /7-1-CustomResources/AMILook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/7-1-CustomResources/AMILook.json -------------------------------------------------------------------------------- /7-1-CustomResources/IAMpwdCheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/7-1-CustomResources/IAMpwdCheck.yaml -------------------------------------------------------------------------------- /7-3-ExampleAMISelect/AMILook .json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/7-3-ExampleAMISelect/AMILook .json -------------------------------------------------------------------------------- /7-3-ExampleAMISelect/amilookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/7-3-ExampleAMISelect/amilookup.js -------------------------------------------------------------------------------- /7-4-pwdChecker/IAMOriginal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/7-4-pwdChecker/IAMOriginal.yaml -------------------------------------------------------------------------------- /7-4-pwdChecker/IAMpwdCheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/7-4-pwdChecker/IAMpwdCheck.yaml -------------------------------------------------------------------------------- /7-5-SAM/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/7-5-SAM/lambda_function.py -------------------------------------------------------------------------------- /7-5-SAM/output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/7-5-SAM/output.yaml -------------------------------------------------------------------------------- /7-5-SAM/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/7-5-SAM/template.yaml -------------------------------------------------------------------------------- /8-2-IntroToStackSets/AWSCloudFormationStackSetAdministrationRole (1).yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/8-2-IntroToStackSets/AWSCloudFormationStackSetAdministrationRole (1).yml -------------------------------------------------------------------------------- /8-2-IntroToStackSets/AWSCloudFormationStackSetExecutionRole.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/8-2-IntroToStackSets/AWSCloudFormationStackSetExecutionRole.yml -------------------------------------------------------------------------------- /8-2-IntroToStackSets/readme: -------------------------------------------------------------------------------- 1 | fgssgfdsfgd 2 | -------------------------------------------------------------------------------- /8-3-CreateStackSets/S3retain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/8-3-CreateStackSets/S3retain.json -------------------------------------------------------------------------------- /8-4-UpdateStackSets/S3noretain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/8-4-UpdateStackSets/S3noretain.json -------------------------------------------------------------------------------- /8-6-Override/readme: -------------------------------------------------------------------------------- 1 | gssdsgf 2 | -------------------------------------------------------------------------------- /9-1-Pipeline/test-stack-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/9-1-Pipeline/test-stack-configuration.json -------------------------------------------------------------------------------- /9-2-PipelineP2/basicpipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/9-2-PipelineP2/basicpipeline.yml -------------------------------------------------------------------------------- /9-2-PipelineP2/wordpress-single-instance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/9-2-PipelineP2/wordpress-single-instance.yaml -------------------------------------------------------------------------------- /Labs/CF Designer/BasicWebServerInVPC (2).template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/CF Designer/BasicWebServerInVPC (2).template -------------------------------------------------------------------------------- /Labs/CF with AWS Config/awsconfigrule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/CF with AWS Config/awsconfigrule.json -------------------------------------------------------------------------------- /Labs/CF with AWS Config/badSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/CF with AWS Config/badSG.json -------------------------------------------------------------------------------- /Labs/CF with AWS Config/goodSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/CF with AWS Config/goodSG.json -------------------------------------------------------------------------------- /Labs/Condition Functions/Lab1_VPC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/Condition Functions/Lab1_VPC.json -------------------------------------------------------------------------------- /Labs/Condition Functions/hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/Condition Functions/hints.json -------------------------------------------------------------------------------- /Labs/Condition Functions/vpctenancy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/Condition Functions/vpctenancy.json -------------------------------------------------------------------------------- /Labs/CrossStack/crossstack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/CrossStack/crossstack.json -------------------------------------------------------------------------------- /Labs/CrossStack/crossstackapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/CrossStack/crossstackapp.json -------------------------------------------------------------------------------- /Labs/DriftDetection/afterdriftupdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/DriftDetection/afterdriftupdate.json -------------------------------------------------------------------------------- /Labs/DriftDetection/ec24drift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/DriftDetection/ec24drift.json -------------------------------------------------------------------------------- /Labs/NestedStacks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/NestedStacks/index.html -------------------------------------------------------------------------------- /Labs/NestedStacks/multinest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/NestedStacks/multinest.json -------------------------------------------------------------------------------- /Labs/NestedStacks/noretain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/NestedStacks/noretain.json -------------------------------------------------------------------------------- /Labs/NestedStacks/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/NestedStacks/root.json -------------------------------------------------------------------------------- /Labs/NestedStacks/s3static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/NestedStacks/s3static.json -------------------------------------------------------------------------------- /Labs/TemplateAnatomy/Template_Anatomy2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/TemplateAnatomy/Template_Anatomy2.yaml -------------------------------------------------------------------------------- /Labs/TemplateAnatomy/readme: -------------------------------------------------------------------------------- 1 | fssddfs 2 | -------------------------------------------------------------------------------- /Labs/TemplateAnatomy/templateAnatomy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/TemplateAnatomy/templateAnatomy.json -------------------------------------------------------------------------------- /Labs/TemplateAnatomy/templateAnatomy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/TemplateAnatomy/templateAnatomy.yaml -------------------------------------------------------------------------------- /Labs/TemplatesAndStacks/Lab1Dynamo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/TemplatesAndStacks/Lab1Dynamo.json -------------------------------------------------------------------------------- /Labs/TemplatesAndStacks/Lab1_S3Retain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/TemplatesAndStacks/Lab1_S3Retain.json -------------------------------------------------------------------------------- /Labs/TemplatesAndStacks/Lab1_VPC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/TemplatesAndStacks/Lab1_VPC.json -------------------------------------------------------------------------------- /Labs/TemplatesAndStacks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/TemplatesAndStacks/index.html -------------------------------------------------------------------------------- /Labs/UpdateStack/LampStack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/UpdateStack/LampStack.json -------------------------------------------------------------------------------- /Labs/UpdateStack/changeset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natonic/CloudFormation-Deep-Dive/HEAD/Labs/UpdateStack/changeset.json --------------------------------------------------------------------------------