-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lambda を AWS CodeDeploy でデプロイする #71
Labels
Comments
|
AppSpec を使ったデプロイversion: 0.0
Resources:
- MyFunction: # Replace "MyFunction" with the name of your Lambda function
Type: AWS::Lambda::Function
Properties:
Name: "test-suzuki-shunsuke" # Specify the name of your Lambda function
Alias: "develop" # Specify the alias for your Lambda function
CurrentVersion: "1" # Specify the current version of your Lambda function
TargetVersion: "2" # Specify the version of your Lambda function to deploy 指定した alias の version を Blue/Green Deploy する。 新しい version のリリースは CodeDeploy のカバー範囲ではないように見える。
ここまでは CodeBuild などの CI ツールでやる感じなのだろうか? AppSpec を生成し、 deploy をトリガーする必要がある。 |
Service Role が必要 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://docs.aws.amazon.com/ja_jp/codedeploy/latest/userguide/welcome.html
The text was updated successfully, but these errors were encountered: