awslabs / amplify-video

An open source Category Plugin for the AWS Amplify-CLI that makes it easy to deploy live and file based streaming video services and integrate them into your Amplify applications.
https://www.npmjs.com/package/amplify-category-video
Apache License 2.0
267 stars 56 forks source link

Amplify Console creating new buckets on every deployment #226

Closed tscole closed 3 years ago

tscole commented 3 years ago

Each time we deploy to our production environment a new input bucket (and sometimes - but not always output buckets are being created).

Build settings:

version: 1
backend:
  phases:
    preBuild:
      commands:
        - npm install -g  amplify-category-video@3.3.0
    build:
      commands:
        - amplify plugin scan
        - '# Execute Amplify CLI with the helper script'
        - amplifyPush --simple
frontend:
  phases:
    preBuild:
      commands:
        - yarn install
    build:
      commands:
        - yarn run build
  artifacts:
    baseDirectory: dist
    files:
      - '**/*'
  cache:
    paths:
      - node_modules/**/*
tscole commented 3 years ago

Closing as duplicate of #141