Skip to content

Commit

Permalink
chore: make pipeline tf vars optionals (bis)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmttn committed Oct 16, 2023
1 parent da7976c commit f597754
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions deployment/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,47 +114,56 @@ variable "airflow_conn_s3_sources" {
description = "Used in extraction tasks orchestrated by airflow"
type = string
sensitive = true
default = ""
}

variable "datagouv_api_key" {
description = "Used in extraction tasks orchestrated by airflow"
type = string
sensitive = true
default = ""
}

variable "dora_api_token" {
description = "Used in extraction tasks orchestrated by airflow"
type = string
sensitive = true
default = ""
}

variable "dora_api_url" {
description = "Used in extraction tasks orchestrated by airflow"
type = string
sensitive = true
default = ""
}

variable "emplois_api_token" {
description = "Used in extraction tasks orchestrated by airflow"
type = string
sensitive = true
default = ""
}

variable "grist_api_token" {
description = "Used in extraction tasks orchestrated by airflow"
type = string
sensitive = true
default = ""
}

variable "mes_aides_airtable_key" {
description = "Used in extraction tasks orchestrated by airflow"
type = string
sensitive = true
default = ""
}

variable "soliguide_api_token" {
description = "Used in extraction tasks orchestrated by airflow"
type = string
sensitive = true
default = ""
}

module "stack_data" {
Expand Down

0 comments on commit f597754

Please sign in to comment.