first commit
This commit is contained in:
17
terraform/modules/bifrost/aws/outputs.tf
Normal file
17
terraform/modules/bifrost/aws/outputs.tf
Normal file
@@ -0,0 +1,17 @@
|
||||
output "service_url" {
|
||||
description = "URL to access the Bifrost service."
|
||||
value = try(
|
||||
module.ecs[0].service_url,
|
||||
module.eks[0].service_url,
|
||||
null,
|
||||
)
|
||||
}
|
||||
|
||||
output "health_check_url" {
|
||||
description = "URL to the Bifrost health check endpoint."
|
||||
value = try(
|
||||
module.ecs[0].health_check_url,
|
||||
module.eks[0].health_check_url,
|
||||
null,
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user