Skip to content

Commit

Permalink
Deploy browser site for HCA dev as TF component of Azul (#6343)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes-ucsc committed Sep 12, 2024
1 parent c15826a commit cc84179
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions deployments/dev.browser/environment.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
from collections.abc import (
Mapping,
)
import json
from typing import (
Optional,
)


def env() -> Mapping[str, Optional[str]]:
"""
Returns a dictionary that maps environment variable names to values. The
values are either None or strings. String values can contain references to
other environment variables in the form `{FOO}` where FOO is the name of an
environment variable. See
https://docs.python.org/3.11/library/string.html#format-string-syntax
for the concrete syntax. These references will be resolved *after* the
overall environment has been compiled by merging all relevant
`environment.py` and `environment.local.py` files.
Entries with a `None` value will be excluded from the environment. They
can be used to document a variable without a default value in which case
other, more specific `environment.py` or `environment.local.py` files must
provide the value.
"""
return {
'azul_terraform_component': 'browser',
'azul_browser_sites': json.dumps({
'ucsc/data-browser': {
'ucsc/hca/dev': {
'hca': {
'domain': 'explore.{AZUL_DOMAIN_NAME}',
'bucket': 'browser',
'tarball_path': 'out',
'real_path': ''
}
}
}
})
}

0 comments on commit cc84179

Please sign in to comment.