Skip to content

Commit e44b2ca

Browse files
authored
Merge pull request #560 from unity-sds/develop
release/9.11.0
2 parents 75c818b + 935bca1 commit e44b2ca

File tree

7 files changed

+19
-4
lines changed

7 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [9.11.0] - 2025-04-09
9+
### Changed
10+
- [#556](https://github.com/unity-sds/unity-data-services/pull/556) feat: bump uds-lib version
11+
12+
## [9.10.1] - 2025-04-09
13+
### Fixed
14+
- [#554](https://github.com/unity-sds/unity-data-services/pull/554) fix: configurable dapa url
15+
816
## [9.10.0] - 2025-03-25
917
### Changed
1018
- [#547](https://github.com/unity-sds/unity-data-services/pull/547) feat: stac browser from terraform

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jsonschema==4.23.0
1515
jsonschema-specifications==2023.12.1
1616
lark==0.12.0
1717
mangum==0.18.0
18-
mdps-ds-lib==1.1.1.dev300
18+
mdps-ds-lib==1.1.1.dev700
1919
pydantic==2.9.2
2020
pydantic_core==2.23.4
2121
pygeofilter==0.2.4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="cumulus_lambda_functions",
15-
version="9.10.0",
15+
version="9.11.0",
1616
packages=find_packages(),
1717
install_requires=install_requires,
1818
package_data={

tf-module/stac_browser/ec2.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ resource "aws_instance" "ds_stac_browser" {
7070
user_data = templatefile("${path.module}/ec2_start.txt", {
7171
github_image_url: var.github_image_url,
7272
image_tag: var.image_tag,
73+
dapa_api_url_base_val: var.dapa_api_url_base_val
7374
})
7475
tags = merge(var.tags, {
7576
Name = "${var.prefix}-ds_stac_browser"

tf-module/stac_browser/ec2_start.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ echo 'done script permission' >> /var/log/user-data-whoami.log;
1717

1818
echo "script wrote";
1919

20-
docker run -d --name my_service --restart always --tty --workdir /usr/src/app/unity/cumulus_lambda_functions/uds_api -v "/root/ss.sh":"/usr/src/app/unity/cumulus_lambda_functions/uds_api/ss.sh":z -p 8005:8005 -e AWS_REGION='us-west-2' -e PYTHONPATH='$PYTHONPATH:/usr/src/app/unity' -e LOG_LEVEL='10' -e DAPA_API_URL_BASE='https://d3vc8w9zcq658.cloudfront.net/am-uds-dapa' -e DAPA_API_PREIFX_KEY='data' -e STATIC_PARENT_DIR='/usr/src/app/unity/cumulus_lambda_functions/uds_api/' --entrypoint /usr/src/app/unity/cumulus_lambda_functions/uds_api/ss.sh ${github_image_url}:${image_tag}
20+
docker run -d --name my_service --restart always --tty --workdir /usr/src/app/unity/cumulus_lambda_functions/uds_api -v "/root/ss.sh":"/usr/src/app/unity/cumulus_lambda_functions/uds_api/ss.sh":z -p 8005:8005 -e AWS_REGION='us-west-2' -e PYTHONPATH='$PYTHONPATH:/usr/src/app/unity' -e LOG_LEVEL='10' -e DAPA_API_URL_BASE=${dapa_api_url_base_val} -e DAPA_API_PREIFX_KEY='data' -e STATIC_PARENT_DIR='/usr/src/app/unity/cumulus_lambda_functions/uds_api/' --entrypoint /usr/src/app/unity/cumulus_lambda_functions/uds_api/ss.sh ${github_image_url}:${image_tag}

tf-module/stac_browser/terraform.tfvars.example

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ cumulus_lambda_vpc_id = "vpc-xxx"
44
image_tag="9.6.0"
55
subnet_ids = ["subnet-private-subnet-id-1", "subnet-private-subnet-id-2"]
66
shared_services_ec2_subnet_cidr = "10.52.0.0/16"
7-
alb_subnet_cidr = "10.52.0.0/16"
7+
alb_subnet_cidr = "10.52.0.0/16"
8+
dapa_api_url_base_val = "https://d3vc8w9zcq658.cloudfront.net/am-uds-dapa"

tf-module/stac_browser/variables.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,9 @@ variable "shared_services_ec2_subnet_cidr" {
5353
variable "alb_subnet_cidr" {
5454
type = string
5555
description = "CIDR of the Subnet where ALB resides. This is to allow connections from ALB to Stac Browser EC2. Example: 10.52.0.0/16"
56+
}
57+
58+
variable "dapa_api_url_base_val" {
59+
type = string
60+
description = "Base URL to hit Stac API to retrieve catalog and so on.. It must start with https and must include the prefix such as `/am-uds-dapa` example: https://d3vc8w9zcq658.cloudfront.net/am-uds-dapa."
5661
}

0 commit comments

Comments
 (0)