Skip to content

Commit

Permalink
Use basic-auth as API Auth Backend (#393)
Browse files Browse the repository at this point in the history
closes astronomer/issues#2228

(cherry picked from commit d42cfb7)
  • Loading branch information
kaxil committed Dec 8, 2020
1 parent e3c74b0 commit 581c540
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airflow/docker_test.go
Expand Up @@ -131,7 +131,7 @@ services:
AIRFLOW__CORE__LOAD_EXAMPLES: "False"
AIRFLOW__CORE__FERNET_KEY: "d6Vefz3G9U_ynXB3cr7y_Ak35tAHkEGAVxuz_B-jzWw="
AIRFLOW__WEBSERVER__RBAC: "True"
AIRFLOW__API__AUTH_BACKEND: "airflow.api.auth.backend.default"
AIRFLOW__API__AUTH_BACKEND: "airflow.api.auth.backend.basic_auth"
ports:
- 8080:8080
volumes:
Expand Down
2 changes: 1 addition & 1 deletion airflow/include/composeyml.go
Expand Up @@ -80,7 +80,7 @@ services:
AIRFLOW__CORE__LOAD_EXAMPLES: "False"
AIRFLOW__CORE__FERNET_KEY: "d6Vefz3G9U_ynXB3cr7y_Ak35tAHkEGAVxuz_B-jzWw="
AIRFLOW__WEBSERVER__RBAC: "True"
AIRFLOW__API__AUTH_BACKEND: "airflow.api.auth.backend.default"
AIRFLOW__API__AUTH_BACKEND: "airflow.api.auth.backend.basic_auth"
ports:
- {{ .AirflowWebserverPort }}:8080
volumes:
Expand Down

0 comments on commit 581c540

Please sign in to comment.