-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(migrate): add integ tests with app deployment (#27509)
> REPLACE THIS TEXT BLOCK > > Describe the reason for this change, what the solution is, and any > important design decisions you made. > > Remember to follow the [CONTRIBUTING GUIDE] and [DESIGN GUIDELINES] for any > code you submit. > > [CONTRIBUTING GUIDE]: https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md > [DESIGN GUIDELINES]: https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md Closes #<issue number here>. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
- Loading branch information
1 parent
71b9737
commit 1fc5dda
Showing
3 changed files
with
117 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
packages/@aws-cdk-testing/cli-integ/resources/templates/sqs-template.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"AWSTemplateFormatVersion": "2010-09-09", | ||
"Description": "AWS CloudFormation Sample Template SQS_With_CloudWatch_Alarms: Sample template showing how to create an SQS queue with AWS CloudWatch alarms on queue depth.", | ||
"Resources": { | ||
"MyQueue": { | ||
"Type": "AWS::SQS::Queue", | ||
"Properties": {} | ||
} | ||
}, | ||
"Outputs": { | ||
"QueueURL": { | ||
"Description": "URL of newly created SQS Queue", | ||
"Value": { | ||
"Ref": "MyQueue" | ||
} | ||
}, | ||
"QueueARN": { | ||
"Description": "ARN of newly created SQS Queue", | ||
"Value": { | ||
"Fn::GetAtt": [ | ||
"MyQueue", | ||
"Arn" | ||
] | ||
} | ||
}, | ||
"QueueName": { | ||
"Description": "Name newly created SQS Queue", | ||
"Value": { | ||
"Fn::GetAtt": [ | ||
"MyQueue", | ||
"QueueName" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters