Skip to content

Commit dfb28c5

Browse files
committed
fix syntax for environment variable orverride
1 parent bcecc39 commit dfb28c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conf/openmetadata.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ logging:
115115

116116
database:
117117
# the name of the JDBC driver, mysql in our case
118-
driverClass: ${DB_DRIVER_CLASS:com.mysql.cj.jdbc.Driver}
118+
driverClass: ${DB_DRIVER_CLASS:-com.mysql.cj.jdbc.Driver}
119119
# the username and password
120120
user: ${MYSQL_USER:-openmetadata_user}
121121
password: ${MYSQL_USER_PASSWORD:-openmetadata_password}
@@ -170,7 +170,7 @@ airflowConfiguration:
170170
username: ${AIRFLOW_USERNAME:-admin}
171171
password: ${AIRFLOW_PASSWORD:-admin}
172172
metadataApiEndpoint: ${SERVER_HOST_API_URL:-http://localhost:8585/api}
173-
authProvider: ${AIRFLOW_AUTH_PROVIDER:-"no-auth"} # Possible values are "no-auth", "azure", "google", "okta", "auth0", "customOidc"
173+
authProvider: ${AIRFLOW_AUTH_PROVIDER:-"no-auth"} # Possible values are "no-auth", "azure", "google", "okta", "auth0", "custom-oidc", "openMetadataJWT"
174174
authConfig:
175175
azure:
176176
clientSecret: ${OM_AUTH_AIRFLOW_AZURE_CLIENT_SECRET:-""}

0 commit comments

Comments
 (0)