From ffb5af5d8ef085e8501975fe7ed74ce8961e04f0 Mon Sep 17 00:00:00 2001 From: Lars Windolf Date: Thu, 18 Jul 2024 22:58:20 +0200 Subject: [PATCH] Update AWS.md --- Cheat Sheets/Cloud/AWS.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cheat Sheets/Cloud/AWS.md b/Cheat Sheets/Cloud/AWS.md index a38d2ebef..b33c60258 100644 --- a/Cheat Sheets/Cloud/AWS.md +++ b/Cheat Sheets/Cloud/AWS.md @@ -144,14 +144,14 @@ Filtered and blocked API endpoints ## CloudFormation -- Nesting Templates with [AWS::Include](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html) +Nesting Templates with [AWS::Include](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html) Transform: Name: 'AWS::Include' Parameters: Location: 's3://MyAmazonS3BucketName/MyFileName.yaml' -- CLI Stack Handling +CLI Stack Handling # Check if stack exists if aws cloudformation describe-stacks --stack-name "$STACK_NAME" >/dev/null 2>/dev/null; then @@ -171,7 +171,7 @@ Filtered and blocked API endpoints ... aws cloudformation wait stack-create-complete --stack-name "$STACK_NAME" -- Automation with Ansible - - [How-To Create Stacks](http://darrylcauldwell.com/aws-cloudformation/) - - [Define Stacks in YAML using Jinja](https://gist.github.com/jheller/c4fa0075e4eccf094769) +Automation with Ansible +- [How-To Create Stacks](http://darrylcauldwell.com/aws-cloudformation/) +- [Define Stacks in YAML using Jinja](https://gist.github.com/jheller/c4fa0075e4eccf094769)