Skip to content
Snippets Groups Projects
Commit 7a9255b3 authored by Daniel Bimschas's avatar Daniel Bimschas
Browse files

HOLI-9542: prepend 'https://' to endpoint URL output

parent a8d40779
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ locals {
dns_name = "${local.environment}.${data.terraform_remote_state.holi_unified_api_common_state.outputs.dns_unified_api_domain}"
api_domain = trimsuffix(google_dns_record_set.holi_social_unified_api_domain_record_set.name, ".")
api_endpoint_url = "${local.api_domain}/graphql"
api_endpoint_url = "https://${local.api_domain}/graphql"
okuna_domain = "https://${local.environment == "production" ? "production" : "staging"}.${data.terraform_remote_state.holi_okuna_common_state.outputs.dns_okuna_domain}"
okuna_url = "https://${local.environment == "production" ? "production" : "staging"}.${data.terraform_remote_state.holi_okuna_common_state.outputs.dns_okuna_domain}/graphql"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment