Hi Team,
Im trying to build and deploy to the AWS elasticbeakstalk its getting failing throwing the below error. can you someone please help me on this
Installing deploy dependencies
dpl.2
356Preparing deploy
358No stash entries found.
359missing access_key_id
360failed to deploy.
Travis.yml file.
sudo: required
language: generic
services:
- docker
before_install:
- docker build -t dkmaruthi/docker-react -f Dockerfile.dev .
script:
- docker run -e CI=true dkmaruthi/docker-react npm run test
deploy:
provider: elasticbeanstalk
region: 'ap-south-1'
app: 'docker'
env: 'docker-env'
bucket_name: 'elasticbeanstalk-ap-south-1-275166638116'
bucket_path: 'docker'
on:
branch: master
acces_key_id: $AWS_ACCESS_KEY
secure_key_id: "$AWS_SECRET_KEY"