File tree Expand file tree Collapse file tree 7 files changed +19
-4
lines changed Expand file tree Collapse file tree 7 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ jsonschema==4.23.0
1515jsonschema-specifications == 2023.12.1
1616lark == 0.12.0
1717mangum == 0.18.0
18- mdps-ds-lib == 1.1.1.dev300
18+ mdps-ds-lib == 1.1.1.dev700
1919pydantic == 2.9.2
2020pydantic_core == 2.23.4
2121pygeofilter == 0.2.4
Original file line number Diff line number Diff line change 1212
1313setup (
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 = {
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ echo 'done script permission' >> /var/log/user-data-whoami.log;
1717
1818echo " 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}
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ cumulus_lambda_vpc_id = "vpc-xxx"
44image_tag="9.6.0"
55subnet_ids = ["subnet-private-subnet-id-1", "subnet-private-subnet-id-2"]
66shared_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"
Original file line number Diff line number Diff line change @@ -53,4 +53,9 @@ variable "shared_services_ec2_subnet_cidr" {
5353variable "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}
You can’t perform that action at this time.
0 commit comments