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

Reference to env vars sitting outside main config yml causes error #38

Closed
DavidHe1127 opened this issue May 22, 2019 · 12 comments
Closed
Labels
awaiting response Contributors are awaiting a response. bug documentation stale

Comments

@DavidHe1127
Copy link

Error:

 Serverless Plugin Error --------------------------------------

  Cannot create property 'DYANMODB_TABLE' on string '${file(./serverless-env.yml):environment}'

configs:

serverless.yml

service: my-service

plugins:
  - serverless-dotenv-plugin

provider:
  name: aws
  runtime: nodejs8.10
  environment: ${file(./serverless-env.yml):environment}

serverless-env.yml

environment:
  SLS_AWS_STAGE: ${env:DYANMODB_TABLE, 'xxvvv'}

No errors when moving environment to outside the provider. Verified that it's working perfectly when it's located outside provider.

@mgarciadelojo
Copy link

The same happens to me. I have different environment files per stage, and quite annoying to see the warning every time I run a serverless command.

@mattia85
Copy link

mattia85 commented Jan 3, 2020

I'm getting the same error, any update about this issue?

@colynb
Copy link
Collaborator

colynb commented Jan 6, 2020

No updates, sorry. I haven't had many resources to set aside and look deeper into this. It's a plugin that works fairly well for most people in most use-cases. If you'd like to take a look at the code and see how it could be improved, that would be really helpful.

@Ali-Dalal
Copy link

Ali-Dalal commented Jul 22, 2020

same issue here :(. any idea how to solve this?

update:

I had a look at the code and I figure out the issue.

in index.js
we need to replace lines 74 to 79 with the following:

        let tmpEnvVars = {};
        Object.keys(envVars).forEach(key => {
          console.log(key);
          if (this.logging) {
            this.serverless.cli.log('\t - ' + key)
          }
          tmpEnvVars[key] = envVars[key];
        })
        this.serverless.service.provider.environment = tmpEnvVars;

the idea is this assignment is wong in case enviroment is set to load from different file
this.serverless.service.provider.environment[key] = envVars[key]
and it will cause the following if environment is set to (as an eample ${file(./serverless_variables/environment_variables.yml):${env:NODE_ENV,development}})

[${file(./serverless_variables/environment_variables.yml):${env:NODE_ENV,development}}] = envVars[key] //which is wrong

@colynb can you have a look? if the changes can be applied, I can open a PR.

Thanks

@RaydelMiranda
Copy link

You can read from https://www.serverless.com/framework/docs/providers/aws/guide/plugins/#plugins/:

Variable references in the serverless instance are not resolved before a Plugin's constructor is called, so if you need these, make sure to wait to access those from your hooks.

In this case the method loadEnv is being called in the constructor of the plugin, causing the known issue since the references have not been resolved at that point.

@neverendingqs
Copy link
Owner

neverendingqs commented Feb 6, 2021

Thanks for the investigation!

This plugin does two different things:

  1. Load all environment variables defined in dotenv file(s) into the Serverless environment
  2. By default, assign all environment variables to provider.environment

Doing 1) in the constructor is handy because it ensures the environment variables are loaded pretty much before anything else can happen.

This bug happens while trying to do 2).

I think the best workaround for this is to manually wire up the environment variables yourself:

custom:
  dotenv:
    include: []

Setting dotenv.include to [] will cause the plugin to bypass any interaction with provider.environment because it will result in envVars being an empty list:

Object.keys(envVars).forEach((key) => {
this.log('\t - ' + key)
this.serverless.service.provider.environment[key] = envVars[key]
})
.

@neverendingqs
Copy link
Owner

FYI I have updated the README with this issue and the workaround: #108

@RaydelMiranda
Copy link

Thanks for the feedback. If I find the time I'll try to find a definitive solution. Would you be willing to accept a pull request on this?

@neverendingqs
Copy link
Owner

Thanks for the feedback. If I find the time I'll try to find a definitive solution. Would you be willing to accept a pull request on this?

I'm open to a solution, but maybe it's better to discuss it here first. Just looking to avoid a situation where you have a full pull request and a disagreement arises that causes rework 🙂.

@RaydelMiranda
Copy link

I agree. I will think some solution for this and let you know here.

neverendingqs added a commit that referenced this issue Feb 27, 2021
…#149)

* docs: updating changes that impact #38.

* docs: add FAQ item around impact of new sls variables engine.
@neverendingqs
Copy link
Owner

serverless>=2.26.0 should resolve this issue, although it may cause other breaking issues. Please see the README (relevant changes: #149) for more details.

@neverendingqs neverendingqs added the awaiting response Contributors are awaiting a response. label Mar 22, 2021
@github-actions github-actions bot added the stale label Apr 21, 2021
@github-actions
Copy link
Contributor

Closed due to inactivity. Please reopen when you get a chance to respond.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
awaiting response Contributors are awaiting a response. bug documentation stale
Projects
None yet
Development

No branches or pull requests

7 participants