Skip to content

Instantly share code, notes, and snippets.

@carlosescura
Created May 8, 2020 08:56
Show Gist options
  • Save carlosescura/e02f2ac2f5f53c3621de1062494f2e2a to your computer and use it in GitHub Desktop.
Save carlosescura/e02f2ac2f5f53c3621de1062494f2e2a to your computer and use it in GitHub Desktop.
module "airflow" {
source = "../../modules/k8s/airflow"
namespace = "airflow"
airflow_dns_name = "airflow.mycompany.com"
cluster_id = module.eks_cluster.cluster_id
env = var.env
postgres_db_host = "my-database.host.com"
postgres_db_name = "airflow"
postgres_db_username = "airflow"
irsa_assumable_role_arn = module.iam_assumable_role_airflow.this_iam_role_arn
airflow_image_tag = "1.10.10"
fernet_key = var.airflow_fernet_key
ingress_class = "nginx"
dags_git_repo_url = "git@github.com:mycompany/dags.git"
dags_git_repo_branch = "master"
chart_version = "6.9.1"
google_oauth_client_id = "XXXXX.apps.googleusercontent.com"
google_oauth_client_secret = "XXXXX"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment