dags/glam_glean_imports.py [67:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    database_url_secret = Secret(
        deploy_type="env",
        deploy_target="DATABASE_URL",
        secret="airflow-gke-secrets",
        key=f"{env}_glam_secret__database_url",
    )
    django_secret = Secret(
        deploy_type="env",
        deploy_target="DJANGO_SECRET_KEY",
        secret="airflow-gke-secrets",
        key=f"{env}_glam_secret__django_secret_key",
    )

    env_vars = {
        # Tells Django what set of configs to load depending on the environment. Defaults to dev on the app.
        "DJANGO_CONFIGURATION": env,
        "DJANGO_DEBUG": "False",
        "DJANGO_SETTINGS_MODULE": "glam.settings",
        "GOOGLE_CLOUD_PROJECT": Variable.get(env + "_glam_project"),
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dags/glam_glean_imports.py [101:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    database_url_secret = Secret(
        deploy_type="env",
        deploy_target="DATABASE_URL",
        secret="airflow-gke-secrets",
        key=f"{env}_glam_secret__database_url",
    )
    django_secret = Secret(
        deploy_type="env",
        deploy_target="DJANGO_SECRET_KEY",
        secret="airflow-gke-secrets",
        key=f"{env}_glam_secret__django_secret_key",
    )

    env_vars = {
        "DJANGO_CONFIGURATION": env,
        "DJANGO_DEBUG": "False",
        "DJANGO_SETTINGS_MODULE": "glam.settings",
        "GOOGLE_CLOUD_PROJECT": Variable.get(env + "_glam_project"),
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



