App Platform is a Platform-as-a-Service (PaaS) offering that allows developers to publish code directly to DigitalOcean servers without worrying about the underlying infrastructure.
Environment variables in App Platform provide a way to store environment information at the container or application levels that your app can access at build or runtimes. We also provide many bindable app-specific and component-level variables, such as the app’s URL or database CA certificate values.
When creating an app, specify environment variables on the Environment screen. Click the Encrypt checkbox to obscure the variable’s values from all build, deployment, and application logs.
You can also declare runtime variables in the app specification for your app by setting the scope
to RUN_TIME
. See the example below or the app specification reference for more details.
In the Apps section of the DigitalOcean Control Panel, click your app, then click the Settings tab. Click the component for which you’d like to provide runtime variables. Click the checkbox labeled Encrypt to obscure the variable’s values from all build, deployment, and application logs.
To define environment variables that will be accessible at build time, define the variable in the app’s specification with the scope
set to BUILD_TIME
.
Here’s an example of build time and runtime environment variables in a specification.
services:
- name: web
instance_count: 4
instance_size_slug: professional-xxl
git:
repo: "https://github.com/example/repo"
branch: master
build_command: "go build ./"
run_command: "/app/server"
envs:
- key: BUILD_ONLY_VAR
scope: BUILD_TIME
value: hello world
- key: RUNTIME_ONLY_VAR
scope: RUN_TIME
value: i'm a little teapot
See the app specification reference for more details.
If you are using a Dockerfile to deploy your app on App Platform, environment variables are only available at build time if you have set them using the --build-arg
option in Docker before deploying the app.
For example, to access the variable EXAMPLE=your-value
during build time, set it in the image using the docker
CLI like this:
docker build --build-arg EXAMPLE=your-value
You cannot use this method to access bindable variables at build time. If you are supplying a Dockerfile, bindable variables are only available at runtime.
Unlike runtime and build time variables which are component-specific, app-level variables can be accessed by all components in your app. App-level variables are available at both build and runtime. If any component-level environment variables (such as runtime or build time variables) have the same name as an app-level environment variable, the component-level variable “wins” as it is considered more specific.
Specify app-level variables on the Environment screen when creating an app. For existing apps, go to the Apps section of the DigitalOcean Control Panel. Click your app, then click the Settings tab. Next to the App-Level Environment Variables heading, click the Edit link.
Similar to GitHub secrets, App Platform can store sensitive variables as encrypted values, such as passwords, API keys, and other sensitive information. When you choose the Encrypt option beside an environment variable, App Platform encrypts the value you entered and stores it in the app’s spec. The value cannot be decrypted once added and you can safely store the app’s spec in your repository if you want to. This also prevents the value from appearing as clear text in logging data.
To encrypt an environment variable, click the Encrypt checkbox next to any variable.
Bindable variables allow environment variables to reference dynamic app-specific values on build and deploy. These values are provided by DigitalOcean and are app-wide or component-specific.
To set a bindable variable as an environment variable, go to the Apps section of the DigitalOcean Control Panel. Click your app, then click the Settings tab. Next to the App-Level Environment Variables heading, click the Edit link.
In the KEYS field, enter a unique name for the new environment variable. In the Values field, enter the bindable variable you would like to reference.
For example, to set the app’s URL as an environment variable, set the KEY value to URL
and its value to ${APP_URL}
.
Once you enter the bindable variable, click Save. The app redeploys.
You can check that the environment variable works by opening the app’s Console tab and running:
echo $<name-of-environment-variable>
These variables can be indicated in the format of ${BINDABLE_NAME}
.
${APP_DOMAIN}
: Application’s primary domain.${APP_URL}
: Application’s primary domain in http format (for example, https://my-domain.com
).${APP_ID}
: Application’s ID.Component-specific variables need to be prefixed by the component name, for example ${my-service.BINDABLE_NAME}
. The _self
prefix can be used to reference the current component, for example ${_self.BINDABLE_NAME}
.
${_self.PRIVATE_DOMAIN}
: Internally used domain name used for communication between multiple services.${_self.PRIVATE_URL}
: Internally used domain in HTTP format suffixed with the port.${_self.PRIVATE_PORT}
: Internally used HTTP port.${_self.COMMIT_HASH}
: git
commit hash used for this build.${_self.PUBLIC_ROUTE_PATH}
: Routable path used for this service publicly.${_self.PUBLIC_URL}
: public URL of this component in http format including the public route.${_self.COMMIT_HASH}
: git
commit hash used for this build.${_self.PUBLIC_ROUTE_PATH}
: Public routable path used for this service.${_self.PUBLIC_URL}
: Public URL of this component in HTTP format, including the public route.${_self.COMMIT_HASH}
: git
commit hash used for this build.Database values are not available during build time but are available at runtime.
${use_your_database_name.HOSTNAME}
: Fully qualified host name to the database.${use_your_database_name.PORT}
: Port to the database.${use_your_database_name.USERNAME}
: Username for the database.${use_your_database_name.PASSWORD}
: Password for the database user.${use_your_database_name.DATABASE}
: The database name used by the user.${use_your_database_name.DATABASE_URL}
: The database connection string.${use_your_database_name.JDBC_DATABASE_URL}
: The database connection string prefixed with jdbc:
for Java.${use_your_database_name.REDIS_URL}
: The Redis connection string (Redis only).${use_your_database_name.CA_CERT}
: CA certificate for the managed databases in the users account.Additionally, you can use these same variable names to refer to your database connection pool (PostgreSQL only). To do so, use the syntax ${<database component name>.<connection pool name>.VARIABLE_NAME}
. For example, to create a bindable variable for a pool’s connection string, you can use ${mydb.mypool.DATABASE_URL}
.
${_self.FUNCTIONS_LOG_DESTINATION_JSON}
: A JSON string with details of all configured log forwarding destinations.${_self.COMMIT_HASH}
: git
commit hash used for this build.${_self.PUBLIC_ROUTE_PATH}
: : Public routable path used for this service.${_self.PUBLIC_URL}
: Public URL of this resource in HTTP format, including the public route.${_self.FUNCTIONS_LOG_DESTINATION_JSON}
: JSON-serialized version of the log_destinations
field in the app spec.