-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsummary.txt
31 lines (26 loc) · 1.92 KB
/
summary.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| ✔ ✘ | Domains | Categories | Stack Name / Console | Regions | AWS Services | Remarks |
| --- | --------------------------------------- | ------------------- | -------------------------------------------- | -------------- | ----------------------- | ------------------------ |
| ✔ | *.goldenbearkin.com | authentication | console | ap-northeast-1 | Cognito | user pool: goldenbearkin |
| ✔ | *.goldenbearkin.com | ssl-certificate | console | us-east-1 | Certificate Manager | *.goldenbearkin.com |
| ✔ | www.goldenbearkin.com | network-resources | network-resources--www-goldenbearkin-com | ap-northeast-1 | S3, Route53, CloudFront | |
| ✔ | cognito.goldenbearkin.com | network-resources | network-resources--cognito-goldenbearkin-com | ap-northeast-1 | S3, Route53, CloudFront | |
| ✔ | apis.goldenbearkin.com/apolloserverdemo | apigw-custom-domain | apis-apolloserverdemo | ap-northeast-1 | APIGW, Lambda, Route53 | |
** create-stack
aws cloudformation create-stack \
--stack-name **stack-name** \
--template-body file://**filename**.yaml
** create-change-set
aws cloudformation create-change-set \
--stack-name **stack-name** \
--change-set-name **change-set-name** \
--template-body file://**filename**.yaml
** execute-change-set
aws cloudformation execute-change-set \
--stack-name **stack-name** \
--change-set-name **change-set-name**
** delete-stack
aws cloudformation delete-stack \
--stack-name **stack-name** \
** validate-template
aws cloudformation validate-template \
--template-body file://**filename**.yaml