Build says s3 bucket name not specified

i am trying to integrate drone ci for deployment of my node application. my .drone.yml file is this:

kind: pipeline
type: docker
name: default

pipeline:
beanstalk:
image: pelotech/drone-elastic-beanstalk
access_key:
from_secret: access_key
secret_key:
from_secret: secret_key
region: ap-southeast-2
application: drone-ci-tester
version_label: v1
auto_create: true
description: Deployed with DroneCI
bucket_name: drone-test-1
bucket_key:
from_secret: access_key

It looks like you are combining syntax from Drone 0.8 and Drone 1.x which is causing problems. When using Drone 1.x you need to define all pipeline steps in the steps section of the yaml as shown here.

sir i tried to implememted new syntax but now it didn’t accept the was keys which i have passed through secrets. my .drone.yml file is this

kind: pipeline
type: docker
name: default

steps:

  • name: deploy to elastic beanstalk
    image: pelotech/drone-elastic-beanstalk
    access_key:
    from_secret: aws_access_key
    secret_key:
    from_secret: aws_secret_key
    region: ap-southeast-2
    application: drone ci tester
    version_label: v1
    description: Deployed with DroneCI
    bucket: drone-node-test
    bucket_key:
    from_secret: access_key

logs says this

all plugin settings need to go under the settings block in your yaml

steps:
- name: deploy
  image: pelotech/drone-elastic-beanstalk
  settings:
    access_key: ...
    ...

thanks @bradrydzewski for your help. really appreciate it. are you availabe in skype or any other platform. it would be really helpful if we could talk .

when i am trying to deploy in the elastic beanstalk it say s3 not found although i have create an s3 bucket. my .drone.yml code is this

kind: pipeline
type: docker
name: default

steps:

  • name: deploy to elastic beanstalk
    image: pelotech/drone-elastic-beanstalk
    settings:
    access_key:
    from_secret: aws_access_key
    secret_key:
    from_secret: aws_secret_key
    region: ap-southeast-2
    application: drone ci tester
    version_label: v1
    description: Deployed with DroneCI
    bucket: drone-node-test
    bucket_key:
    from_secret: aws_access_key

and the logs says:

If you continue to experience issues I recommend you contact the plugin author. I can advise on general matters (yaml syntax issues, etc) however, I did not create this plugin and therefore cannot advise on its behavior. You can contact the author at https://github.com/josmo/drone-elastic-beanstalk