随笔分类 -  AWS

摘要:Serverless framework with AWS Link to each sections Table of Content: Part 0: Serverless Project structure Part 1: DynamoDB & ApiGateway Part 2: Event 阅读全文
posted @ 2021-05-17 15:15 Zhentiw 阅读(168) 评论(0) 推荐(0)
摘要:IAM roles for non-human access Any application you wrote in the cloud is probably going to accessing some other resources ion the cloud like, EC2 inst 阅读全文
posted @ 2021-05-13 02:45 Zhentiw 阅读(253) 评论(0) 推荐(0)
摘要:There are two types of invocation for Lambda: Request/Response Asynchronous invoaction Demo by using AWS CLI: Request/Response aws lambda invoke --fun 阅读全文
posted @ 2021-04-12 17:38 Zhentiw 阅读(118) 评论(0) 推荐(0)
摘要:Overview: Create an S3 Bucket to store CloudFormation template Create Root Stack CloudFormation stack Create multi childstacks in rootestack Create an 阅读全文
posted @ 2021-04-10 21:54 Zhentiw 阅读(119) 评论(0) 推荐(0)
摘要:Task Breakdown Install the AWS SAM CLI on your local machine Create an S3 bucket Use `sam package` to package our code and save it in S3 Use `sam depl 阅读全文
posted @ 2021-04-09 19:32 Zhentiw 阅读(107) 评论(0) 推荐(0)
摘要:CloudFormation In this hands-on exercise, you will create an S3 bucket with AWS CloudFormation. Prerequisites: AWS account By the end of this lab, you 阅读全文
posted @ 2021-04-09 18:06 Zhentiw 阅读(71) 评论(0) 推荐(0)
摘要:Key Points AWS EKS is a service that we can use to set up Kubernetes. The deployment.yaml file is used to specify how our pods should be created. The  阅读全文
posted @ 2021-04-09 17:41 Zhentiw 阅读(70) 评论(0) 推荐(0)
摘要:Configuring Your Cluster Kubernetes has configurations that can be tuned to optimize your deployed application. Cost Replicas: you can reduce number o 阅读全文
posted @ 2021-04-09 17:40 Zhentiw 阅读(134) 评论(0) 推荐(0)
摘要:Overview Create IAM User with CodeCommit Access Configure local AWS user aws configure HTTPS Git credentials for AWS CodeCommit Create CodeCommit Repo 阅读全文
posted @ 2021-04-07 03:23 Zhentiw 阅读(147) 评论(0) 推荐(0)
摘要:The AWS Command Line Interface (AWS CLI) is a command-line tool that allows you to interact with AWS services using commands in your terminal/command 阅读全文
posted @ 2021-03-31 14:07 Zhentiw 阅读(190) 评论(0) 推荐(0)
摘要:Elastic Beanstalk is a powerful Development Operations tool (Dev Ops) to deploy your code to AWS services and infrastructure with minimal effort. EB C 阅读全文
posted @ 2021-03-24 15:07 Zhentiw 阅读(57) 评论(0) 推荐(0)
摘要:When Launch a new EC2 instance, in the final step, you can create a new private key pair and download it as pem file. For example, I have one call `my 阅读全文
posted @ 2021-03-22 16:55 Zhentiw 阅读(50) 评论(0) 推荐(0)
摘要:CORS: Cross Origin Resource Sharing: defines how a client can interact with a resource, and what the client can and cannot do with that resource. Sett 阅读全文
posted @ 2021-03-21 22:07 Zhentiw 阅读(53) 评论(0) 推荐(0)
摘要:For example client want to upload some large file to our FileSotre, for example S3. Normally we might thinking about Send file to our server Our serve 阅读全文
posted @ 2021-03-20 23:47 Zhentiw 阅读(47) 评论(0) 推荐(0)
摘要:Prerequisites: An AWS account AWS CLI installed on your client. If not, refer to the official AWS instructions to install/update AWS CLI (version 2) b 阅读全文
posted @ 2021-03-19 16:17 Zhentiw 阅读(75) 评论(0) 推荐(0)
摘要:In this hands-on exercise, you will learn how to send alerts via SNS by creating a topic, subscribing to a topic, and publishing an alert message to a 阅读全文
posted @ 2021-03-17 21:43 Zhentiw 阅读(73) 评论(0) 推荐(0)
摘要:Amazon SQS is a service that hosts the queue of messages (requests and responses) from the decoupled application components. Have a quick look at this 阅读全文
posted @ 2021-03-17 21:35 Zhentiw 阅读(310) 评论(0) 推荐(0)
摘要:In this hands-on exercise, you will learn to create a network load balancer (NLB), and see the role of an NLB. An NLB serves as the single point of co 阅读全文
posted @ 2021-03-17 01:23 Zhentiw 阅读(255) 评论(0) 推荐(0)
摘要:Let's have a look at how to create a load balancer, and see the configuration details for an existing load balancer. A. Prerequisite Go to the EC2 das 阅读全文
posted @ 2021-03-16 15:27 Zhentiw 阅读(106) 评论(0) 推荐(0)
摘要:Let's have a walkthrough of an Auto Scaling Group which has already been created. 1. Select an Auto Scaling Group Go to the EC2 Dashboard, and select 阅读全文
posted @ 2021-03-16 15:21 Zhentiw 阅读(268) 评论(0) 推荐(0)