At DMNO we love Netlify. This very site is hosted on it! That’s why we’re very excited to make it easier and safer to use environment variables in all of your Netlify-hosted projects.
This platform integration exposes a pre-made config schema and underlying types to interact with the env vars that Netlify injects while on their platform.
It also exposes a Netlify build plugin - which injects your resolved DMNO config into functions and edge functions. You may not need to use this plugin if you already have a build process that injects config values into your functions code before deployment.
Setup
Netlify Config Schema
Netlify injects a set of read-only environment variables during its build process that provide information about the current build.
The @dmno/netlify-platform
module exposes DMNO data types and a pre-made config schema object which you can use in your own schema. You can use the pickFromSchemaObject
utility to pick only the env var keys that you need from the full list that Netlify injects. For example:
Netlify build plugin
This package also includes a Netlify build plugin which automatically injects your resolved DMNO config into your Functions and Edge Functions.
You may also not need it for functions if you are running your own build process and have already handled bundling your DMNO config as static replacements at build time. In this case, you need to make sure that your config is injected into your build command - either via one of our integrations, or by using dmno run
. If your build command is working locally, it probably will just work on Netlify.
You may need to use this plugin if:
- you are authoring functions directly in
netlify/functions
and/ornetlify/edge-functions
folder(s) and you are relying on the netlify cli (netlify build
) to bundle your code - you are using an external functions integration that handles creating/bundling your functions code, for example the Astro Netlify adapter
Feel free to reach out on Discord if you need help.
Build plugin installation
If you determine that you do need this build plugin, after installing the package itself, you need to add the plugin to your netlify.toml
file. For example:
If you are authoring functions directly in netlify/functions
/netlify/edge-functions
folder(s), you must add an additional import if you want your functions to be able to run locally using netlify dev
.
If you are using an integration which already builds functions for you - like the Astro Netlify adapter - then you do not need to do anything.
Migrating from Netlify managed config
Should I set env vars in the Netlify UI at all?
Of course you can still set overrides and secrets within the Netlify UI if you like and rely on config values being injected that way.
However, we recommend migrating all of your config to DMNO itself by using switchBy to create branching logic based on the env vars injected by Netlify.
You can also use plugins - for example our Encrypted Vault and 1Password plugins - to handle sensitive config within your schema. Note that you will still set a single environment variable in the Netlify UI, to allow these plugins to access the rest of your secrets.
For example:
Scopes
Note that Netlify’s built-in environment variable tooling has a concept of scopes and certain vars being applied/available at different times, for example during the build versus during function execution. There are also some limitations around env vars being injected into functions due to the nature of how those platforms are set up.
Using DMNO, we avoid all of that since we inject all of your resolved DMNO config at build time, and standardize access to your config regardless of the situation.
Note that any env vars set in the Netlify UI or netlify.toml
must include the build
scope to be noticed by DMNO - since we inject your config at build time.