This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
60 additions
and
33 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @aws-quickstart/aws_quickstart_team |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# quickstart-examples | ||
# AWS Partner Solution examples | ||
|
||
This GitHub repository contains example AWS Quick Start templates, including AWS CloudFormation, deployment guide, and diagram templates. It also includes examples that are discussed in the [Infrastructure & Automation blog](https://aws.amazon.com/blogs/infrastructure-and-automation/). | ||
This GitHub repository contains example files for [AWS Partner Solutions](https://aws.amazon.com/solutions/browse-all/?solutions-all.sort-by=item.additionalFields.sortDate&solutions-all.sort-order=desc&awsf.Content-Type=*all&awsf.AWS-Product%20Category=*all), including AWS CloudFormation templates, deployment guides, and architecture diagrams. It also includes examples that are discussed in posts on the [Integration & Automation Blog](https://aws.amazon.com/blogs/infrastructure-and-automation/). |
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,12 @@ | ||
AWSTemplateFormatVersion: 2010-09-09 | ||
|
||
Description: "Deploys a VPC (qs-1t72ibrq5)" | ||
|
||
Resources: | ||
Vpc: | ||
Type: AWS::EC2::VPC | ||
Properties: | ||
CidrBlock: 10.0.0.0/16 | ||
Tags: | ||
- Key: Name | ||
Value: rename-stack-demo |
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,13 @@ | ||
AWSTemplateFormatVersion: 2010-09-09 | ||
|
||
Description: Deploys a VPC | ||
|
||
Resources: | ||
Vpc: | ||
Type: AWS::EC2::VPC | ||
DeletionPolicy: Retain | ||
Properties: | ||
CidrBlock: 10.0.0.0/16 | ||
Tags: | ||
- Key: Name | ||
Value: rename-stack-demo |
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
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
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
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+191 KB
doc/eks-architecture-examples/discngine-3decision-architecture-diagram.pptx
Binary file not shown.
Binary file added
BIN
+111 KB
doc/serverless-architecture-examples/snowflake-sagemaker-autopilot-architecture-diagram.pptx
Binary file not shown.
Binary file added
BIN
+229 KB
doc/three-tier-architecture-examples/crest-infosolutions-cloudmeet-architecture-diagram.pptx
Binary file not shown.
Binary file added
BIN
+188 KB
doc/three-tier-architecture-examples/nvidia-cheminformatics-architecture-diagram.pptx
Binary file not shown.
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
1 change: 1 addition & 0 deletions
1
samples/cloudformation-cross-account/functions/source/CfnStackAssumeRole/requirements.txt
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 @@ | ||
requests |
4 changes: 2 additions & 2 deletions
4
samples/cloudformation-stack-ttl/scripts/deploy-admin-stack.sh
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#! /bin/bash | ||
|
||
aws cloudformation create-stack --stack-name --region us-east-1 cfn-admin-role-stack \ | ||
--template-url https://s3.amazonaws.com/quickstart-examples/samples/cloudformation-stack-ttl/templates/cloudformation-admin-iam.yaml \ | ||
--template-url https://s3.amazonaws.com/aws-quickstart/quickstart-examples/samples/cloudformation-stack-ttl/templates/cloudformation-admin-iam.yaml \ | ||
--capabilities "CAPABILITY_IAM" "CAPABILITY_AUTO_EXPAND" \ | ||
--disable-rollback | ||
--disable-rollback |
4 changes: 2 additions & 2 deletions
4
samples/cloudformation-stack-ttl/scripts/deploy-demo-stack.sh
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#! /bin/bash | ||
|
||
aws cloudformation create-stack --stack-name --region us-east-1 demo-stack-ttl \ | ||
--template-url https://s3.amazonaws.com/quickstart-examples/samples/cloudformation-stack-ttl/templates/demo-stack-ttl.yaml \ | ||
--template-url https://s3.amazonaws.com/aws-quickstart/quickstart-examples/samples/cloudformation-stack-ttl/templates/demo-stack-ttl.yaml \ | ||
--capabilities "CAPABILITY_IAM" "CAPABILITY_AUTO_EXPAND" \ | ||
--role-arn "<ADD_CLOUDFORMATION_SERVICE_ROLE_ARN_HERE>" \ | ||
--disable-rollback | ||
--disable-rollback |
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
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
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