Questions tagged [aws-codestar]

AWS CodeStar is a cloud-based service for creating, managing, and working with software development projects on AWS.

Documentation: AWS CodeStar User Guide

100 questions
0
votes
0 answers

AWS CodeStar Service Role has in its description "DO NOT USE", what does it mean and is there any other roles I should use instead of this one?

Policy ARN arn:aws:iam::aws:policy/service-role/AWSCodeStarServiceRole Description DO NOT USE - AWS CodeStar Service Role Policy which grants administrative privileges in order for CodeStar to manage IAM and other service resources on behalf of the…
0
votes
0 answers

AWS Codestar Bitbucket connection selectable as source provider by Codepipeline but not selectable in a standalone Codebuild job

I made Codestar Bitbucket connection, and I'm able to select it as a source provider for Codepipeline. I can't select it as a source provider for Codebuild job for some reason. I've added "codestar-connections:UseConnection" permission to Codebuild…
0
votes
0 answers

How to run a python program in AWS Developer Tool (Code Build / Code Star)

I have a Glue Create ETL script & configuration files, which will create Glue ETL job. Now i am trying to store create ETL script and configurations files in code commit and deloy in EC2 instances. Clarifications required area : i am trying to…
0
votes
1 answer

AWS Codestart Permissions to create a Project

I have an IAM account from my work organization. When I try to create a project in CodeStar, I get a permissions denied error. Could somebody please let me know what all permissions should the account owner / root give to an IAM user / group so…
Vishnoo Rath
  • 550
  • 7
  • 22
0
votes
0 answers

Is there a way to migrate a Cloud9 instance to a regular EC2 instance?

I have a Cloud9 EC2 instance running on Linux 2 AMI. The nice thing about the Cloud9 instance is that all the software packages I want (Rails) are installed and I didn't have to configure or install anything on the instance. Of course the instance…
JanuskaE
  • 1,284
  • 2
  • 8
  • 12
0
votes
1 answer

Getting an error when trying to register EC2 with ECS Cluster

Working on AWS and at a loss with this... I am trying to register an EC2 instance to an ECS Cluster, the EC2 instance was launched as part of Codestar project. Steps I have followed as per AWS documentation: Go to ECS Access Cluster Click on…
0
votes
1 answer

Codepipeline ARN not available through Terraform but available in metadata using cli

Executing AWS cli command as below: aws codepipeline get-pipeline --name pipeline_name produces following output { "pipeline": { "name": "xxxxx",, "roleArn": "xxxxx",, "artifactStore": { "type": "S3", …
0
votes
1 answer

Beanstalk cannot access rds

Im in a similar boat to the user on this question; Connecting the elastic beanstalk environment with existing RDS instance I have a Codestar project (Django via Beanstalk) and i cannot get the application to access any rds instances. When attempting…
0
votes
1 answer

AWS CodeStar code not propagated to the website

I have a AWS CodeStar Java Web application. I have a Route 53 domain which links to this application. Until yesterday, everything was working fine. Yesterday, I was adding some new features and pushing them to the CodeStar repository. I didn't…
0
votes
1 answer

AWS elastic beanstalk Express service 502 Bad Gateway after deployment

Im using aws cloud9 for dev and codestar for deployment. The service is working perfectly locally and after deployment there is one post method giving me the 502 error. The method from server.js: app.post('/upload', async function(req, res) { …
0
votes
1 answer

Why does my AWS Codestar application endpoint not show code changes?

I made my first Codestar project with the web service template for node and lambda. I pushed code changes and all 3 steps finished green. I even checked Pipeline and the comment from my latest code push showed there. However, when I click on my…
Jerry Huckins
  • 498
  • 3
  • 7
  • 22
0
votes
1 answer

AWS CodeBuild Test Report Is Empty

So I created and deployed a tutorial AWS CodeStar project [https://github.com/aamalik7196/Testv4]. The files are created by AWS itself to run a simple Hello World sample project. the only change i changed is in the buildspec.yml file to create…
0
votes
1 answer

how to send POST request from NodeJS application to AWS Lambda?

Below is my Input form from which, I want to send 2 inputted numbers as POST to AWS Lambda and want them to be added and I want the response of the added numbers to be displayed on the browser of the client. Let us keep in note, that we are using…
0
votes
1 answer

Policy to limit subnets or hosted zone CodeStar can use

Is there an IAM policy that can be created/attached to CodeStarWorker-*-CloudFormation that limits either the Subnets or HostedZoneIds the CodeStar worker can use? Here's an example template.yml: Resources: # other resources DevAlb: …
0
votes
1 answer

Customizing a Prod deployment from a CodeStar project

I'm referencing to this documentation: https://docs.aws.amazon.com/codestar/latest/userguide/customize-ec2-multi-endpoints.html#customize-ec2-multi-endpoints-newstage We currently have a CodeStar project created from the Beanstalk template of type…