Skip to content

Instantly share code, notes, and snippets.

@rix0rrr
Created March 19, 2019 16:24
Show Gist options
  • Save rix0rrr/6a37d59029c9cb9d1584e08d54bdee28 to your computer and use it in GitHub Desktop.
Save rix0rrr/6a37d59029c9cb9d1584e08d54bdee28 to your computer and use it in GitHub Desktop.
Stacks with dependencies
Resources:
Stack1:
Type: 'AWS::CloudFormation::Stack'
Properties:
TemplateURL: ...
Stack2:
Type: 'AWS::CloudFormation::Stack'
Properties:
TemplateURL: ...
DependsOn:
- Stackl
Stack3:
Type: 'AWS::CloudFormation::Stack'
Properties:
TemplateURL: ...
DependsOn:
- Stack2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment