infra/terraform/gcp/README.md
This serves as a guide on how to deploy Feast on GCP. At the end of this guide, we will have provisioned:
my.tfvars. A sample configuration is as below:gcp_project_name = "kf-feast"
name_prefix = "feast-0-8"
region = "asia-east1"
gke_machine_type = "n1-standard-2"
network = "default"
subnetwork = "default"
dataproc_staging_bucket = "kf-feast-dataproc-staging-test"
terraform {
backend "gcs" {
bucket = "<your bucket name>"
prefix = "terraform/feast"
}
}
terraform apply -var-file="my.tfvars" to deploy.