cloud-infrastructure/terraform/environments/production/airbyte/versions.tf
terraform {
backend "s3" {
region = "us-west-2"
bucket = "hm-terraform-bucket"
key = "production/airbyte/terraform.tfstate"
}
required_providers {
# https://registry.terraform.io/providers/airbytehq/airbyte/latest
airbyte = {
source = "airbytehq/airbyte"
version = "0.6.5"
}
}
# terraform version
required_version = ">= 1.7"
}