-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp_config.tf
38 lines (33 loc) · 1.04 KB
/
app_config.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
locals {
app_config = {
stage = var.stage,
region = data.aws_region.current.name
}
app_config_website = var.website == null ? {} : {
website = {
url = local.url_website
environment = var.website.environment
authTokenInLocalStorage = var.website.auth_token_in_local_storage
}
}
app_config_ws = var.ws == null ? {} : {
ws = {
url = local.url_ws
allowUnauthenticated = var.ws.allow_unauthenticated
}
}
app_config_http = var.http == null ? {} : {
http = {
url = local.url_http
allowUnauthenticated = var.http.allow_unauthenticated
}
}
app_config_auth = var.auth == null ? {} : {
auth = {
url = local.url_auth
clientId = module.auth_client[0].user_pool_client.id
apiScopes = join(" ", module.auth[0].api_scopes)
}
}
app_config_json = jsonencode(merge(local.app_config, local.app_config_website, local.app_config_ws, local.app_config_http, local.app_config_auth))
}