I cant't find any documentation about this! Every example is based on GitHub repos but how can I do this with AWS CodeCommit?
Asked
Active
Viewed 3,516 times
9

Steffen Opel
- 63,899
- 11
- 192
- 211

José Marcos
- 113
- 1
- 6
-
2I guarantee that it is in development, just give it time. – Kevin Aug 22 '15 at 02:35
1 Answers
4
There isn't any direct integration available at this time.
You'll have to checkout your repo locally and then push it to S3. The easiest way to do this is with aws deploy push
.

Jonathan Turpie
- 1,343
- 10
- 16
-
Thanks! It's confusing why AWS doesn't follow the "easy way" idea to get things done. – José Marcos Aug 05 '15 at 19:15
-
1I find it absolutely astounding that they aren't integrated (and as at November 2015, still aren't). Fancy offering CodeCommit to manage your code, and CodeDeploy to deploy your code, but then telling users that they can use git but not their own repo ! They need to look at how well IBM bluemix does this stuff ... – Andy Lorenz Nov 26 '15 at 17:14
-
I believe CodePipeline is supposed to be the bridge between the two (source -> build -> deploy). That doesn't work out of the box yet though. – Jonathan Turpie Nov 27 '15 at 18:24
-
4FYI, CodePipeline is now integrated with CodeCommit. So you could do CodeCommit -> CodeDeploy using CodePipeline. https://forums.aws.amazon.com/ann.jspa?annID=3693 – RandomQuestion Apr 23 '16 at 00:47
-
It seems like the CodeCommit and CodePipeline integration is only enabled in us-east region. We use us-west-2 (Oregon) and we can only see s3 or github. – Jay Jun 17 '16 at 20:59
-
-
Dec 2018... Still not integrated @RandomQuestion your link is now dead :( – David J Eddy Dec 27 '18 at 22:22
-