Skip to content

Commit

Permalink
more jupyter terraform tweaks
Browse files Browse the repository at this point in the history
Signed-off-by: Oleg Avdeev <[email protected]>
  • Loading branch information
oavdeev committed Oct 21, 2020
1 parent 930bb2c commit f570e52
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions infra/terraform/aws/helm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,22 +77,23 @@ locals {
redis_port = 6379
}
}
}
}

"feast-jupyter" = {
"envOverrides" = {
feast_redis_host = module.redis.endpoint
feast_redis_port = 6379
feast_redis_ssl = true
feast_emr_cluster_id = (length(aws_emr_cluster.persistent_cluster) > 0) ? aws_emr_cluster.persistent_cluster[0].id : null
feast_emr_region = var.region
spark_staging_location = "s3://${aws_s3_bucket.feast_bucket.id}/artifacts/"
feast_emr_log_location = "s3://${aws_s3_bucket.feast_bucket.id}/emr-logs/"
feast_spark_launcher = "emr"
feast_historical_feature_output_location = "s3://${aws_s3_bucket.feast_bucket.id}/out/"
feast_historical_feature_output_format = "parquet"
kafka_brokers = aws_msk_cluster.msk.bootstrap_brokers
}
}
"feast-jupyter" = {
"envOverrides" = {
feast_redis_host = module.redis.endpoint
feast_redis_port = 6379
feast_redis_ssl = true
feast_emr_cluster_id = (length(aws_emr_cluster.persistent_cluster) > 0) ? aws_emr_cluster.persistent_cluster[0].id : null
feast_emr_region = var.region
feast_spark_staging_location = "s3://${aws_s3_bucket.feast_bucket.id}/artifacts/"
feast_emr_log_location = "s3://${aws_s3_bucket.feast_bucket.id}/emr-logs/"
feast_spark_launcher = "emr"
feast_historical_feature_output_location = "s3://${aws_s3_bucket.feast_bucket.id}/out/"
feast_historical_feature_output_format = "parquet"
demo_kafka_brokers = aws_msk_cluster.msk.bootstrap_brokers
demo_data_location = "s3://${aws_s3_bucket.feast_bucket.id}/test-data/"
}
}
}
Expand Down

0 comments on commit f570e52

Please sign in to comment.