hongbo-miao/hongbomiao.com

View on GitHub
cloud-infrastructure/terraform/modules/airbyte/hm_airbyte_connection/variables.tf

Summary

Maintainability
Test Coverage
variable "source_id" {
  type = string
}
variable "destination_id" {
  type = string
}
variable "destination_name" {
  type = string
}
variable "streams" {
  type = list(object({
    name      = string
    sync_mode = string
  }))
}
variable "schedule_type" {
  type = string
}
variable "schedule_cron_expression" {
  type    = string
  default = null
}
variable "non_breaking_schema_updates_behavior" {
  type = string
}
variable "status" {
  type = string
}