Skip to content

Commit

Permalink
Update AWS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lwindolf authored Jul 18, 2024
1 parent 54806c8 commit ffb5af5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cheat Sheets/Cloud/AWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)

0 comments on commit ffb5af5

Please sign in to comment.