Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Поддержка environment на глобальном уровне #111

Open
sergeyzwezdin opened this issue Dec 10, 2023 · 3 comments
Open

Comments

@sergeyzwezdin
Copy link
Contributor

Если передать переменные окружения на уровне функции, то они задаются для функции после развертывания:

service: yandex-cloud-nodejs
frameworkVersion: "3"

provider:
  name: yandex-cloud
  runtime: nodejs16
  httpApi:
    payload: '1.0'

plugins:
  - "@yandex-cloud/serverless-plugin"

functions:
  simple:
    handler: dist/index.hello
    memorySize: 128
    timeout: '5'
    account: function-sa
    environment:
      TEST: 1
    events:
      - http:
          method: post
          path: /post/just/to/this/path

Но если задавать их глобально, то после развертывания для функции они не появляются:

service: yandex-cloud-nodejs
frameworkVersion: "3"

provider:
  name: yandex-cloud
  runtime: nodejs16
  httpApi:
    payload: '1.0'
  environment:
    TEST: 1

plugins:
  - "@yandex-cloud/serverless-plugin"

functions:
  simple:
    handler: dist/index.hello
    memorySize: 128
    timeout: '5'
    account: function-sa
    events:
      - http:
          method: post
          path: /post/just/to/this/path

Хотелось бы иметь возможность задать их одновременно для всех функций.

@nikolaymatrosov
Copy link
Contributor

А разве это поддержано в плагине?

@sergeyzwezdin
Copy link
Contributor Author

environment: { $ref: '#/definitions/cloudFunctionEnvironmentVariables' }, // Can be overridden by function configuration

@nikolaymatrosov
Copy link
Contributor

Я просто имел в виду, что в той части кода, где создается функция я не вижу упоминаний об использовании этой части конфига.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants