Skip to content

Commit

Permalink
fix: Broken module due to apphub_service_uri output (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragotic authored Nov 14, 2024
1 parent 4358d3e commit ebef4be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ output "env_vars" {
output "apphub_service_uri" {
value = {
service_uri = "//redis.googleapis.com/${google_redis_instance.default.id}"
service_id = substr("${var.name}-${md5("${var.region}-${var.project_id}")}", 0, 63)
service_id = substr("${var.name}-${md5("${google_redis_instance.default.region}-${var.project_id}")}", 0, 63)
}
description = "Service URI in CAIS style to be used by Apphub."
}

0 comments on commit ebef4be

Please sign in to comment.