1--- 2title: Environment variables and secrets 3--- 4 5import { Collapsible } from '~/ui/components/Collapsible'; 6import { Step } from '~/ui/components/Step'; 7import { Terminal } from '~/ui/components/Snippet'; 8 9The ["Environment variables in Expo"](/guides/environment-variables.mdx) guide presents several options for how you can access system environment variables to your app JavaScript code. This can be a useful way to inject values in your code, but [these values should not be secrets](/guides/environment-variables.mdx#security-considerations), and so the value it provides can be summarized as a convenience for accommodating certain development workflows. 10 11Using the techniques described in the environment variables document above, environment variables are inlined (the `process.env.X` text is replaced with its evaluated result) in your app's JavaScript code _at the time that the app is built_, and included in the app bundle. This means that the substitution would occur on EAS Build servers and not on your development machine, so if you tried to run a build on EAS Build without explicitly providing values or fallbacks for the environment variables, then you are likely to encounter either a build-time or runtime error. 12 13## Using plaintext environment variables 14 15Plaintext environment variables are strings that you are comfortable with committing to your source control and using inside of your client app code. For example, you might use an `API_URL` variable to tell your app what backend to use. 16 17You can specify environment variables for specific build jobs using **eas.json**: 18 19```json eas.json 20{ 21 "build": { 22 "production": { 23 "env": { 24 "API_URL": "https://api.production.com" 25 } 26 } 27 } 28} 29``` 30 31You can access these variables in your application using the techniques described in the ["Environment variables in Expo"](/guides/environment-variables.mdx) guide. You can also share common configurations between different build profiles using the `"extends"` property, if both profiles have an `env` object defined, content will be merged. 32 33```json eas.json 34{ 35 "build": { 36 "production": { 37 "env": { 38 "API_URL": "https://api.production.com" 39 } 40 }, 41 "test": { 42 "distribution": "internal", 43 "extends": "production" 44 } 45 } 46} 47``` 48 49See the [eas.json reference](/build/eas-json.mdx) for more information. 50 51## Environment variables and app.config.js 52 53Environment variables used in your build profile will also be used to evaluate **app.config.js** when you run `eas build`. This is important in order to ensure that the result of evaluating **app.config.js** is the same when it's done locally while initiating the build (in order to gather metadata for the build job) and when it occurs on the remote build worker, for example to configure the project during `npx expo prebuild` or to embed the configuration data in the app. 54 55## Built-in environment variables 56 57The following environment variables are exposed to each build job — they are not set when evaluating **app.config.js** locally: 58 59- `CI=1` - indicates this is a CI environment 60- `EAS_BUILD=true` - indicates this is an EAS Build environment 61- `EAS_BUILD_PLATFORM` - either `android` or `ios` 62- `EAS_BUILD_RUNNER` - either `eas-build` for EAS Build cloud builds or `local-build-plugin` for [local builds](local-builds) 63- `EAS_BUILD_ID` - the build ID, e.g. `f51831f0-ea30-406a-8c5f-f8e1cc57d39c` 64- `EAS_BUILD_PROFILE` - the name of the build profile from **eas.json**, e.g. `production` 65- `EAS_BUILD_GIT_COMMIT_HASH` - the hash of the Git commit, e.g. `88f28ab5ea39108ade978de2d0d1adeedf0ece76` 66- `EAS_BUILD_NPM_CACHE_URL` - the URL of npm cache ([learn more](/build-reference/private-npm-packages)) 67- `EAS_BUILD_MAVEN_CACHE_URL` - the URL of Maven cache ([learn more](/build-reference/caching/#android-dependencies)) 68- `EAS_BUILD_COCOAPODS_CACHE_URL` - the URL of CocoaPods cache ([learn more](/build-reference/caching/#ios-dependencies)) 69- `EAS_BUILD_USERNAME` - the username of the user initiating the build (it's undefined for bot users) 70- `EAS_BUILD_WORKINGDIR` - the remote directory path with your project 71 72## Using secrets in environment variables 73 74To provide your build jobs with access to values that are too sensitive to include in your source code and Git repository, you can use "Secrets". 75 76A secret is made up of a name and a value. The name can only contain alphanumeric characters and underscores. The value is limited to 32 KiB. 77 78The value can be either a file or a string value. For a file, its contents are saved to a temporary file on EAS Build servers. The file path is available via the environment variable. For example, if you created a file secret named `SECRET_FILE`, EAS Build will create a file at `/Users/expo/workingdir/environment-secrets/__UNIQUE_RANDOM_UUID__`, and `SECRET_FILE` will be set to that path. 79 80The secret values are encrypted at rest and in transit, and are only decrypted in a secure environment by EAS servers. 81 82You can create up to 100 account-wide secrets for each Expo account and 100 app-specific secrets for each app. Account-wide secrets will be exposed to every build environment across all of your apps. App-specific secrets only apply to the app they're defined for, and will override any account-wide secrets with the same name. 83 84You can manage secrets through the Expo website and EAS CLI. 85 86> **warning** Always remember that **anything that is included in your client side code should be considered public and readable to any individual that can run the application**. 87> EAS Secrets are intended to be used to provide values to an EAS Build job so that they may be used during the build process. 88> Examples of correct usage include setting the `NPM_TOKEN` for installing private packages from npm, or a Sentry API key to create a release and upload your sourcemaps to their service. 89> EAS Secrets do not provide any additional security for values that you end up embedding in your application itself, such as an AWS access key or other private keys. 90 91### Secrets on the Expo website 92 93To create **account-wide secrets**, navigate to [the "Secrets" tab in your account or organization settings](https://expo.dev/accounts/[account]/settings/secrets). 94 95To create **app-specific secrets**, navigate to [the "Secrets" tab in your project dashboard](https://expo.dev/accounts/[account]/projects/[project]/secrets). If you haven't published your project yet and it isn't visible on the website, you can create it on the website from this link. 96 97### Adding secrets with EAS CLI 98 99To create a new secret, run `eas secret:create`: 100 101<Terminal 102 cmd={[ 103 '$ eas secret:create --scope project --name SECRET_NAME --value secretvalue --type string', 104 '✔ ️Created a new secret SECRET_NAME on project @fiberjw/goodweebs.', 105 ]} 106/> 107 108To view any existing secrets for this project, run `eas secret:list`: 109 110<Terminal 111 cmd={[ 112 '$ eas secret:list', 113 'Secrets for this account and project:', 114 '┌────────────────┬────────┬─────────┬──────────────────────────────────────┬─────────────────┐', 115 '│ Name │ Type │ Scope │ ID │ Updated at │', 116 '├────────────────┼────────┼─────────┼──────────────────────────────────────┼─────────────────┤', 117 '│ APP_UPLOAD_KEY │ string │ account │ 366bd434-b538-4192-887c-036c0eddedec │ Oct 05 11:51:46 │', 118 '├────────────────┼────────┼─────────┼──────────────────────────────────────┼─────────────────┤', 119 '│ NPM_TOKEN │ string │ project │ 03f4881f-88fd-4d94-9e35-a5c34d39c2f2 │ Oct 05 11:51:33 │', 120 '├────────────────┼────────┼─────────┼──────────────────────────────────────┼─────────────────┤', 121 '│ SECRET_FILE │ file │ project │ 72c7ac1e-78d0-4fa2-b105-229260cecc88 │ Oct 05 11:52:12 │', 122 '├────────────────┼────────┼─────────┼──────────────────────────────────────┼─────────────────┤', 123 '│ sentryApiKey │ string │ project │ 88dd0296-9119-4d50-a91b-1f646733f569 │ Oct 05 11:51:40 │', 124 '└────────────────┴────────┴─────────┴──────────────────────────────────────┴─────────────────┘', 125 ]} 126/> 127 128### Importing secrets from a dotenv file 129 130If you're using a **.env** file for storing your secrets locally, you can use the `eas secret:push` command to import all of them to EAS: 131 132<Terminal 133 cmd={[ 134 '$ eas secret:push --scope project --env-file ./eas/.env', 135 '✔ Creating secrets on account johndoe...', 136 '✔ Created the following secrets on account johndoe:', 137 '- ABC', 138 '- DEF', 139 '- GHI', 140 ]} 141/> 142 143Beware that EAS CLI will fail if some of the secrets defined in the dotenv file already exist on the server. To force overriding those secrets, pass the `--force` flag to the command. 144 145#### Doppler integration 146 147You can use the `eas secret:push` command to integrate EAS with your [Doppler](https://doppler.com/) project: 148 149<Terminal 150 cmd={[ 151 '$ doppler run --mount ./eas/.env -- eas secret:push --scope project --env-file ./eas/.env', 152 ]} 153/> 154 155### Accessing secrets in EAS Build 156 157After creating a secret, you can read it on subsequent EAS Build jobs with `process.env.VARIABLE_NAME` from Node.js or in shell scripts as `$VARIABLE_NAME`. 158 159## Common questions 160 161Environment variables can be tricky to use if you don't have the correct mental model for how they work. In this section we're going to clarify common sources of confusion, oriented around use cases. 162 163### Can I share environment variables defined in eas.json with `expo start` and `eas update`? 164 165When you define environment variables on build profiles in **eas.json**, they will not be available for local development when you run `npx expo start`. A concern that developers often raise about this is that they now have to duplicate their configuration in multiple places, leading to additional maintenance effort and possible bugs when values go out of sync. If you find yourself in this situation, one possible solution is to move your configuration out of environment variables and into JavaScript. For example, imagine we had the following **eas.json**: 166 167```json eas.json 168{ 169 "build": { 170 "production": { 171 "channel": "production", 172 "env": { 173 "API_URL": "https://api.production.com", 174 "ENABLE_HIDDEN_FEATURES": 0 175 } 176 }, 177 "preview": { 178 "channel": "staging", 179 "env": { 180 "API_URL": "https://api.staging.com", 181 "ENABLE_HIDDEN_FEATURES": 1 182 } 183 } 184 } 185} 186``` 187 188In **app.config.js**, we may be using the API URL like this: 189 190```js app.config.js 191export default { 192 // ... 193 extra: { 194 // Fall back to development URL when not set 195 apiUrl: process.env.API_URL ?? 'https://localhost:3000' 196 enableHiddenFeatures: process.env.ENABLE_HIDDEN_FEATURES ? Boolean(process.env.ENABLE_HIDDEN_FEATURES) : true, 197 } 198} 199``` 200 201Using this approach, we would always need to remember to run `API_URL=https://api.staging.com ENABLE_HIDDEN_FEATURES=1 eas update` when updating staging, and something similar for production. If we forgot the `ENABLE_HIDDEN_FEATURES=0` flag when publishing to production, we might end up rolling out untested features to production, and if we forgot the `API_URL` value, then users would be pointed to `https://localhost:3000`! 202 203The following are two possible alternative approaches, each with different tradeoffs. 204 205<Step label="1"> 206 207**Move values to application code and switch based on channel**. Rather than putting configuration in environment variables and extras, create a JavaScript file, possibly named **Config.js**. This approach will work well for you as long as you don't need to use the configuration values to modify build time configuration, such as the `ios.bundleIdentifier`, `icon`, and so on. This approach also gives you the ability to promote updates between environments, because the configuration that is used will switch when it's loaded from a binary with a different channel. It might look something like this: 208 209<Collapsible summary="Config.js"> 210 211```js 212import * as Updates from 'expo-updates'; 213 214let Config = { 215 apiUrl: 'https://localhost:3000', 216 enableHiddenFeatures: true, 217}; 218 219if (Updates.channel === 'production') { 220 Config.apiUrl = 'https://api.production.com'; 221 Config.enableHiddenFeatures = false; 222} else if (Updates.channel === 'staging') { 223 Config.apiUrl = 'https://api.staging.com'; 224 Config.enableHiddenFeatures = true; 225} 226 227export default Config; 228``` 229 230</Collapsible> 231 232</Step> 233 234<Step label="2"> 235 236**Use a single environment variable to toggle configuration**. In our **eas.json** we can set an environment variable such as `APP_ENV` and then switch on that value inside of **app.config.js**. This way, we only have to be sure to set one environment variable: `APP_ENV=production eas update`. 237 238<Collapsible summary="eas.json"> 239 240```json 241{ 242 "build": { 243 "production": { 244 "channel": "production", 245 "env": { 246 "APP_ENV": "production" 247 } 248 }, 249 "preview": { 250 "channel": "staging", 251 "env": { 252 "APP_ENV": "staging" 253 } 254 } 255 } 256} 257``` 258 259</Collapsible> 260 261<Collapsible summary="app.config.js"> 262 263```js 264let Config = { 265 apiUrl: 'https://localhost:3000', 266 enableHiddenFeatures: true, 267}; 268 269if (process.env.APP_ENV === 'production') { 270 Config.apiUrl = 'https://api.production.com'; 271 Config.enableHiddenFeatures = false; 272} else if (process.env.APP_ENV === 'staging') { 273 Config.apiUrl = 'https://api.staging.com'; 274 Config.enableHiddenFeatures = true; 275} 276 277export default { 278 // ... 279 extra: { 280 ...Config, 281 }, 282}; 283``` 284 285</Collapsible> 286 287</Step> 288 289### How are naming collisions between secrets and the `env` field in eas.json handled? 290 291A secret created on the Expo website or with `eas secret:create` will take precedence over an environment variable of the same name that is set through the `env` field in **eas.json**. 292 293For example, if you create a secret with name `MY_TOKEN` and value `secret` and also set `"env": { "MY_TOKEN": "public" }` in your **eas.json**, then `process.env.MY_TOKEN` on EAS Build will evaluate to `secret`. 294 295### How do environment variables work for my Expo Development Client builds? 296 297Environment variables set in your build profile that impact **app.config.js** will be used for configuring the development build. When you run `npx expo start` to load your app inside of your development build, only environment variables that are available on your development machine will be used for the app manifest; this becomes the same situation as described above for **expo start**. 298 299### Can I just set my environment variables on a CI provider? 300 301Environment variables must be defined in **eas.json** in order to be made available to EAS Build workers. If you are [triggering builds from CI](/build/building-on-ci.mdx) this same rule applies, and you should be careful to not confuse setting environment variables on GitHub Actions (or the provider of your choice) with setting environment variables and secrets in **eas.json**. 302 303### How to upload a secret file and use it in my app config? 304 305A common use case for uploading file secrets to EAS is when you want to supply your build with the **google-services.json** and **GoogleService-Info.plist** files. Usually, those files should not be checked in to the repository. 306 307Here's an example how to upload **google-services.json** to EAS and use it in your app config: 308 309<Step label="1"> 310 311Upload the file to EAS. 312 313<Terminal 314 cmd={[ 315 '$ eas secret:create --scope project --name GOOGLE_SERVICES_JSON --type file --value ./path/to/google-services.json', 316 '✔ ️Created a new secret GOOGLE_SERVICES_JSON on project @user/myproject.', 317 ]} 318/> 319 320</Step> 321 322<Step label="2"> 323 324Use **app.config.js** to read the path to **google-services.json**. 325 326```js app.config.js 327export default { 328 // ... 329 android: { 330 googleServicesFile: process.env.GOOGLE_SERVICES_JSON, 331 // ... 332 }, 333}; 334``` 335 336</Step> 337