Merge pull request #81 from kananinirav/feature/format-update

[Modify] Deploying TOC Update AndFormat Fix
This commit is contained in:
kanani Nirav
2023-07-19 16:34:11 +09:00
committed by GitHub

View File

@@ -5,9 +5,11 @@
- [Benefits of AWS CloudFormation](#benefits-of-aws-cloudformation) - [Benefits of AWS CloudFormation](#benefits-of-aws-cloudformation)
- [CloudFormation Stack Designer](#cloudformation-stack-designer) - [CloudFormation Stack Designer](#cloudformation-stack-designer)
- [AWS Cloud Development Kit (CDK)](#aws-cloud-development-kit-cdk) - [AWS Cloud Development Kit (CDK)](#aws-cloud-development-kit-cdk)
- [Example of AWS CDK (Python)](#example-of-aws-cdk-python)
- [Developer problems on AWS](#developer-problems-on-aws) - [Developer problems on AWS](#developer-problems-on-aws)
- [Typical architecture: Web App 3-tier](#typical-architecture-web-app-3-tier) - [Typical architecture: Web App 3-tier](#typical-architecture-web-app-3-tier)
- [AWS Elastic Beanstalk Overview](#aws-elastic-beanstalk-overview) - [AWS Elastic Beanstalk Overview](#aws-elastic-beanstalk-overview)
- [Elastic Beanstalk vs CloudFormation](#elastic-beanstalk-vs-cloudformation)
- [Elastic Beanstalk - Health Monitoring](#elastic-beanstalk---health-monitoring) - [Elastic Beanstalk - Health Monitoring](#elastic-beanstalk---health-monitoring)
- [AWS CodeDeploy](#aws-codedeploy) - [AWS CodeDeploy](#aws-codedeploy)
- [AWS CodeCommit](#aws-codecommit) - [AWS CodeCommit](#aws-codecommit)
@@ -150,7 +152,6 @@ app.synth()
- Single Container Docker - Single Container Docker
- Multi-Container Docker - Multi-Container Docker
- Preconfigured Docker - Preconfigured Docker
- If not supported, you can write your custom platform. - If not supported, you can write your custom platform.
### Elastic Beanstalk vs CloudFormation ### Elastic Beanstalk vs CloudFormation
@@ -158,7 +159,7 @@ app.synth()
AWS Elastic Beanstalk uses AWS CloudFormation underneath for managing the infrastructure and resources required to run your application. Then, what's the difference between them? AWS Elastic Beanstalk uses AWS CloudFormation underneath for managing the infrastructure and resources required to run your application. Then, what's the difference between them?
| Parameters | AWS CloudFormation | AWS Elastic Beanstalk | | Parameters | AWS CloudFormation | AWS Elastic Beanstalk |
| -- | -- | -- | | ------------- | ------------------------------------------------------ | ------------------------------------------------ |
| Purpose | Infrastructure as Code | Platform as a Service | | Purpose | Infrastructure as Code | Platform as a Service |
| Deployment | Define and manage AWS infrastructure | Simplified application deployment and scaling | | Deployment | Define and manage AWS infrastructure | Simplified application deployment and scaling |
| Control | High control and flexibility over underlying resources | Simplified management of underlying resources | | Control | High control and flexibility over underlying resources | Simplified management of underlying resources |