AWS CLI as pre-installed tools
To automate deployments using AWS CodeDeploy we would like to use AWS CLI via custom after_deploy scripts. It would be great if http://www.appveyor.com/docs/installed-software would include the AWS CLI for this purpose.
Comments are currently closed for this discussion. You can start a new one.
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by Feodor Fitsner on 07 May, 2015 08:06 PM
Added a new item for that: https://github.com/appveyor/ci/issues/265
2 Posted by Aristarkh Zagor... on 08 May, 2015 08:39 AM
Great news, Feodor, thank you!
Support Staff 3 Posted by Feodor Fitsner on 13 May, 2015 05:10 AM
It's been deployed to all images.
4 Posted by Aristarkh Zagor... on 13 May, 2015 07:54 AM
Thanks again!
5 Posted by Aristarkh Zagor... on 13 May, 2015 09:02 AM
Combined with S3 deployment works like a charm:
deploy:
- provider: S3
region: $(AWS_DEFAULT_REGION)
access_key_id: $(AWS_ACCESS_KEY_ID)
secret_access_key: $(AWS_SECRET_ACCESS_KEY)
bucket: my-bucket
folder: release/$(APPVEYOR_BUILD_VERSION)
after_deploy:
- aws deploy create-deployment --application-name %AWS_CD_APPNAME% --deployment-group-name %AWS_CD_DGNAME% --s3-location bundleType=zip,bucket=my-bucket,key=release/%APPVEYOR_BUILD_VERSION%/....zip
Aristarkh Zagorodnikov closed this discussion on 13 May, 2015 11:38 AM.