Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Deploying a nodejs app to aws elastic beanstalk fails.

Adelphe MBATCHI May 26, 2020

bellow the error message :

An error occurred (InvalidParameterValue) when calling the UpdateEnvironment operation: No Environment found for EnvironmentName = 'prod_env'.

knowing that prod_env is my application's environment in aws elastic beanstalk.

 

 

2 answers

0 votes
Adelphe MBATCHI May 27, 2020

build logs :

✔ Application version CloudHSE-31 successfully created in Elastic Beanstalk.

INFO: Updating environment in Elastic Beanstalk...

An error occurred (InvalidParameterValue) when calling the UpdateEnvironment operation: No Environment found for EnvironmentName = 'prod_env'.
Halyna Berezovska
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 29, 2020

Hello, @Adelphe MBATCHI  !

Could you try to execute aws cli command update-envronment to debug it?

Or just to check it if aws should recognize it:

 

aws elasticbeanstalk describe-environments --application-name "<app_name>" --environment-names "<env_name>" --debug

 If it succeed then you can debug update command.

Looking forward hearing back from you.

Cheers, Galyna

0 votes
Halyna Berezovska
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 27, 2020

@Adelphe MBATCHI  hello, thanks for reporting.

 

Can you please share details of logs if possible and the part of the pipeline where it has failed?

There may be different reasons of failure like such some tiny mistakes in syntax, usage or sth else

Adelphe MBATCHI May 27, 2020

bitbucket-pipelines.yml

image: node:10.20.1
pipelines:
default:
- step:
name: "Build and Test"
caches:
- node
script:
- npm install
- apt-get update && apt-get install -y
- apt-get install zip
- zip application.zip index.js package.json
services:
- mongo
artifacts:
- application.zip
- step:
name: "Deploy to Production"
deployment: 'Production'
script:
- pipe: atlassian/aws-elasticbeanstalk-deploy:0.6.4
variables:
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
AWS_DEFAULT_REGION: 'us-east-1'
APPLICATION_NAME: 'cloudhse'
S3_BUCKET: 'elasticbeanstalk-us-east-1-307150017281'
ZIP_FILE: 'application.zip'
VERSION_LABEL: 'CloudHSE-${BITBUCKET_BUILD_NUMBER}'
ENVIRONMENT_NAME: 'prod_env'
definitions:
services:
mongo:
image: mongo
Like Ian likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events