Skip to content

Commit f570e52

Browse files
committed
more jupyter terraform tweaks
Signed-off-by: Oleg Avdeev <oleg.v.avdeev@gmail.com>
1 parent 930bb2c commit f570e52

1 file changed

Lines changed: 16 additions & 15 deletions

File tree

infra/terraform/aws/helm.tf

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -77,22 +77,23 @@ locals {
7777
redis_port = 6379
7878
}
7979
}
80+
}
81+
}
8082

81-
"feast-jupyter" = {
82-
"envOverrides" = {
83-
feast_redis_host = module.redis.endpoint
84-
feast_redis_port = 6379
85-
feast_redis_ssl = true
86-
feast_emr_cluster_id = (length(aws_emr_cluster.persistent_cluster) > 0) ? aws_emr_cluster.persistent_cluster[0].id : null
87-
feast_emr_region = var.region
88-
spark_staging_location = "s3://${aws_s3_bucket.feast_bucket.id}/artifacts/"
89-
feast_emr_log_location = "s3://${aws_s3_bucket.feast_bucket.id}/emr-logs/"
90-
feast_spark_launcher = "emr"
91-
feast_historical_feature_output_location = "s3://${aws_s3_bucket.feast_bucket.id}/out/"
92-
feast_historical_feature_output_format = "parquet"
93-
kafka_brokers = aws_msk_cluster.msk.bootstrap_brokers
94-
}
95-
}
83+
"feast-jupyter" = {
84+
"envOverrides" = {
85+
feast_redis_host = module.redis.endpoint
86+
feast_redis_port = 6379
87+
feast_redis_ssl = true
88+
feast_emr_cluster_id = (length(aws_emr_cluster.persistent_cluster) > 0) ? aws_emr_cluster.persistent_cluster[0].id : null
89+
feast_emr_region = var.region
90+
feast_spark_staging_location = "s3://${aws_s3_bucket.feast_bucket.id}/artifacts/"
91+
feast_emr_log_location = "s3://${aws_s3_bucket.feast_bucket.id}/emr-logs/"
92+
feast_spark_launcher = "emr"
93+
feast_historical_feature_output_location = "s3://${aws_s3_bucket.feast_bucket.id}/out/"
94+
feast_historical_feature_output_format = "parquet"
95+
demo_kafka_brokers = aws_msk_cluster.msk.bootstrap_brokers
96+
demo_data_location = "s3://${aws_s3_bucket.feast_bucket.id}/test-data/"
9697
}
9798
}
9899
}

0 commit comments

Comments
 (0)