Questions tagged [aws-codepipeline]

AWS CodePipeline is a continuous delivery service for fast and reliable application updates. CodePipeline builds, tests, and deploys your code every time there is a code change, based on the release process models you define.

AWS CodePipeline is a continuous delivery service for fast and reliable application updates. CodePipeline builds, tests, and deploys your code every time there is a code change, based on the release process models you define. This enables you to rapidly and reliably deliver features and updates. You can easily build out an end-to-end solution by using pre-built plugins for popular third-party services like GitHub or integrating your own custom plugins into any stage of your release process.

1526 questions
0
votes
1 answer

How can I pass a repository resource in as a parameter to AWS codepipeline template?

I have a yml cloudformation template (A) for an AWS codepipeline build that I want to make a variation of it in an another template (B). The original (A) has a repository as one of its resources which it created when initially run thru…
claya
  • 1,920
  • 1
  • 18
  • 32
0
votes
2 answers

AWS deployment fails with Insufficient permission: The provided role does not have the Elasticbeanstalk:UpdateEnvironment permission

So, I'm pretty new to AWS, and have a simple pipeline built with AWS CodeStar. Source -> Application -> Beta. I'm trying to deploy to a beta site, and I get this failure. I tried following the instrucitons on…
Phaedrus
  • 51
  • 1
  • 11
0
votes
0 answers

How to manage seperate docker registries for elastic beanstalk through a single Dockerrun.aws.json

I am currently having some problems maintaining separate docker images by tags in separate registries, since Dockerrun.aws.json cannot reference environment variables in version 1 for single container deployment. I wanted to know how can I avoid…
0
votes
2 answers

What is the "right" way to set up code pipeline to deploy different branches to different Elastic Beanstalk environments?

This is a basic question: I have a basic codepipeline pipeline set up like the following: Source is github branch (master) Build with AWS Codebuild Deploy to Elastic Beanstalk -> deploys to appname-prod environment That all makes sense and is…
0
votes
1 answer

AWS CodePipeline + CodeDeploy + CodeCommit with --file-exists-behavior option

I have a CD work flow using CodePipeline + CodeCommit + CodeDeploy to EC2 instances. I have everything else working except for this --file-exists-behavior option. If I create a deployment from the Aws CLI or the console. The deployment works…
0
votes
1 answer

CodePipeline CloudFormation resource has dependency on exported variable created by a resource

I have 3 parts to my application API Server (API Gateway) Frontend Lambda I have setup CodePipeline to build my application stack. I have CodeBuild to build my API gateway SAM application. And CloudFormation to deploy. This CloudFormation exports…
Jiew Meng
  • 84,767
  • 185
  • 495
  • 805
0
votes
1 answer

aws CodeDeploy error : Artifact [Source] exceeds max artifact size

When I run the pipeline the deploy step fails. When I click on the "details" link a popup appears and the error message : "Action execution failed Artifact [Source] exceeds max artifact size" I have tried to google for the error message,…
0
votes
1 answer

Can a single CodeCommit repo deploy to multiple environments?

I have a simple web application which uses AWS CodeCommit, CodePipeline and CodeDeploy. When ever a change is done and pushed to git, CodePipeline kicks in and deploys the code to the QA environment - WINDOWS. Now I want to setup a MANUALLY…
0
votes
1 answer

CodePipeline force retry

I find that when a pipeline stage fails, I can retry. But if I update the stage I cannot retry. Is there a way to do this without committing an empty change?
Jiew Meng
  • 84,767
  • 185
  • 495
  • 805
0
votes
1 answer

Decrypt input parameter in Lambda function in AWS Codepipeline

I built a CodePipeline with a CodeBuild step that generates as output a file "build.json" with a single line tag information. This file is the input for a next Lambda step in the Codepipeline. The Lambda function wants to read the tag information…
Sam
  • 1
  • 2
0
votes
2 answers

AWS Code Star Express API Enable CORS and Integration Response

I am using AWS Code star and using Express Web service template. Code star create Lambda and create API Gateway API. The api works, it returns what I want. I am trying to enable to CORS, through API gateway, API GateWay -> API -> resouce -> Actions…
0
votes
1 answer

Cannot find Ouath2 secret and key to connect my pipeline to bitbucket

I am trying to use aws code pipeline but with bitbucket rather than git.So I found the follwoing document: https://aws.amazon.com/blogs/devops/integrating-git-with-aws-codepipeline/ After going through it when I clicked on a template they provided,…
0
votes
2 answers

Automating Deployment of Lambda-based Applications

I checked the tutorial at below link and tried that. http://docs.aws.amazon.com/lambda/latest/dg/automating-deployment.html Its working for me, but how to deploy the environment variables and configuration changes related to that lambda. From…
MrNeilP
  • 349
  • 1
  • 5
  • 19
0
votes
2 answers

How to automatically deploy api gateway in AWS codepipeline

Currently I am able to deploy a lambda by pushing to github. I also automatically deploy a lambda but only because the api gateway is an event in the lambda yaml file AWSTemplateFormatVersion: '2010-09-09' Transform:…
0
votes
1 answer

AWS CodeBuild for python does not fail

I might have been misunderstood the concept, but does not a Codebuild step fail when there is an error in your code and it can not build that code? I assumed that if one command in my build commands fails, it will notify me and/or stop the further…
1 2 3
99
100