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
1 answer

Are AWS CodeStar events considered Management or Data events?

I'm building a CodeStar project and want to create a CloudTrail trail to record its events - more specifically, the events found in the documentation here. On the page where I can create a trail, I am unable to select anything related to CodeStar…
mycellius
  • 568
  • 1
  • 5
  • 28
0
votes
1 answer

AWS CodeCommit access denied while cloning

Recently i set up and downloaded the repo by using the git credentials generated from AWS IAM user but then i deleted that AWS git generated key that i had used to clone the repo first time. now i have generated another AWS git key but it is…
Lilly
  • 180
  • 1
  • 16
0
votes
1 answer

Laravel folder not being pushed from CodeStar to Deploy

I have a pipeline in place on AWS for a Laravel application. When I commit changes to master, they all go except one folder. The "Modules" folder. Every other file and folder updates and even when I check CodeCommit, the folder is there. However,…
0
votes
1 answer

Recommendations for AWS CodeStar/Pipeline and Python (Django/Flask)

I am quite new to AWS. I did a course called 'AWS Cloud Practitioner Essentials' and then I have recently been doing a certified developer course which I got from Udemy. For a while, I have been interested in python, Django and Flask. It was a…
0
votes
1 answer

Could not create aws sqs queue for multiple environment?

The yml file in aws sqs has Resources: MyQueue: Type: AWS::SQS::Queue Properties: QueueName:"mytestqueue" how to handle the MYQueue when creating a stage environment, it is throwing Queue already exists! how to add MyQueue to stage…
RAVIBHARATHI PK
  • 91
  • 1
  • 13
0
votes
0 answers

How can I view or monitor AWS CodeStar deployed Spring projects application log?

After deploying spring project in server like tomcat, i can view or monitor applications log using bellow ways: just tail -f catalina.out command on catalina.out file View the applications configured log file from specific folder. In AWS CodeStar…
0
votes
1 answer

SSL Certificate error while running python -m nltk.downloader -d $NLTK_DATA punkt command on aws lambda

Getting SSL Certificate error while deploying the following code on aws lambda using aws codestar build pipeline. Looked at multiple community discussions, nothing worked out. version: 0.2 phases: install: commands: # Upgrade AWS CLI &…
SVB-knowmywork
  • 123
  • 1
  • 9
0
votes
1 answer

AWS Multi-account AWS Cloudformation execution

Codestar generates a pipeline where the deploy has two steps: GenerateChangeSet and ExecuteChangeSet I've read this https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-create-cross-account.html but it's related to CodeDeploy. I…
Leandro
  • 870
  • 2
  • 13
  • 27
0
votes
1 answer

AWS Multi-account deployment

I have all my microservices hosted in codestar, with their cloudformation scripts. Everything working well. I want to create a new Organizational Unit and deploy in a new account. What's the best way of doing this? I've read that codestar does not…
Leandro
  • 870
  • 2
  • 13
  • 27
0
votes
0 answers

Master/Stage branch pushing into different environments on AWS

Practically I have two different instances that are running stag php app and prod php app and using code start deployment was being done using environment variables in beanstalk but recently everytime change is being pushed the variables delete so…
0
votes
1 answer

how to sort sequence of aws codepipeline history

I am new to AWS. I've created a sample Python project on AWS CodeStart and made a small change. AWS automatically deployed the change and I could see it. On CodePipeline, shows sequence as Source->Build->Deploy. This is fine as it shows in sequence…
0
votes
1 answer

Quickly run express app in AWS cloud9 from app generated from cloudstar?

I created an express app using CodeStar and used Cloud9 as the IDE. Is there a simple way to quickly run the app from the Cloud9 integrated terminal, like nodemon on a desktop? I am getting annoyed having to commit, build, and deploy the…
kroe761
  • 3,296
  • 9
  • 52
  • 81
0
votes
0 answers

The instance's public ip does not work after creating an Amazon Machine Image (AMI) of that instance

I created a Java web application(EC2 not Beanstalk) using amazon codestar. Then I went to the instance and created an AMI while it was running. AMI was created successfully. However, this instance's public ip does not respond anymore(the web page…
0
votes
1 answer

How to re-use code in a CodeStar project?

I have created a CodeStar project (Python Webservice template as starting point) and I am using vscode to edit it. So far I have customised the generated project to have two lambdas. The structure is as…
0
votes
0 answers

AWS Codestar Proper Way to Add RDS Postgres Database without Breaking Anything

I'm using AWS Codestar setup and I would like to add a database.config to my .ebextentions folder in my rails project. If you're wondering why I'm not adding database trough console, the Codestar's pipeline fails at the final ExecuteChangeSet stage…