Skip to content

DrFaust92/terraform-provider-airflow

This branch is 124 commits ahead of, 3 commits behind houqp/terraform-provider-airflow:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a1cf7fc · Mar 15, 2025
Jan 2, 2025
Nov 24, 2023
Jan 21, 2023
Feb 28, 2025
Jun 12, 2022
Jan 19, 2022
Dec 15, 2024
Jun 12, 2022
May 5, 2020
Oct 30, 2021
Oct 31, 2023
Jan 20, 2023
Feb 28, 2025
Feb 28, 2025
Jan 21, 2023
Jan 20, 2023

Repository files navigation

Terraform Provider Airflow

==========================

terraformregistry build GitHub go.mod Go version (subdirectory of monorepo)

The Airflow provider is used to interact with the Airflow. The provider needs to be configured with the proper credentials before it can be used.

Example Usage

provider "airflow" {
  base_endpoint = "airflow.net"
  oauth2_token  = "token"
}

resource "airflow_variable" "default" {
  key   = "foo"
  value = "bar"
}

Authentication

Google Composer 1 Example (OAUTH2 identity token)

data "http" "client_id" {
  url = "composer-url"
}

resource "google_service_account" "example" {
  account_id = "example"
}

data "google_service_account_access_token" "impersonated" {
  target_service_account = google_service_account.example.email
  delegates              = []
  scopes                 = ["userinfo-email", "cloud-platform"]
  lifetime               = "300s"
}

provider "google" {
  alias        = "impersonated"
  access_token = data.google_service_account_access_token.impersonated.access_token
}

data "google_service_account_id_token" "oidc" {
  provider               = google.impersonated
  target_service_account = google_service_account.example.email
  delegates              = []
  include_email          = true
  target_audience        = regex("[A-Za-z0-9-]*\\.apps\\.googleusercontent\\.com", data.http.client_id.response_body)
}

provider "airflow" {
  base_endpoint = data.http.client_id.url
  oauth2_token  = data.google_service_account_id_token.oidc.id_token
}

Google Composer 2 Example (OAUTH2 access token)

Composer 2 changes how the API is accessed by the provider, you can just use the composer airflow web UI endpoint, and you can use a standard access token.

With service account impersionation

resource "google_service_account" "example" {
  account_id = "example"
}

data "google_service_account_access_token" "impersonated" {
  target_service_account = google_service_account.example.email
  delegates              = []
  scopes                 = ["userinfo-email", "cloud-platform"]
  lifetime               = "300s"
}

provider "google" {
  alias        = "impersonated"
  access_token = data.google_service_account_access_token.impersonated.access_token
}

data "google_client_config" "airflow" {
  provider = google.impersonated
}

provider "airflow" {
  base_endpoint = composer-url
  oauth2_token  = data.google_client_config.airflow.access_token
}

Using the default provider & service account

data "google_client_config" "airflow" {
  provider = google
}

provider "airflow" {
  base_endpoint = composer-url
  oauth2_token  = data.google_client_config.airflow.access_token
}

Argument Reference

  • base_endpoint - (Required) The Airflow API endpoint.
  • oauth2_token - (Optional) An OAUTH2 identity token used to authenticate against an Airflow server. Conflicts with username and password
  • username - (Optional) The username to use for API basic authentication. Conflicts with oauth2_token
  • password - (Optional) The password to use for API basic authentication. Conflicts with oauth2_token
  • disable_ssl_verification - (Optional) Disable SSL verification. Default is false

Running Acceptence Tests

Setting Up Local Environment

  • See Official docs and run docker-compose up spin up a local airflow cluster.
  • export AIRFLOW_BASE_ENDPOINT=http://localhost:8080
  • export AIRFLOW_API_PASSWORD=airflow
  • export AIRFLOW_API_USERNAME=airflow

Running Tests

Run make testacc