Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ infra/terraform/build/
.cursorignore
.cursorindexingignore
infra/terraform/terraform.tfvars
infra/tf-outputs.json
.rale-test-uri
.rale-seed-state.json
infra/terraform/.terraform.tfstate.lock.info
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ All notable changes to the RAJA project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.1] - 2026-03-19

### Changed

- **`infra/tf-outputs.json` is now tracked in git**: Removes the need for a local Terraform state or re-deploy to run the RALE CLI or integration tests. The file contains only URLs and ARNs — no raw secrets.

## [1.3.0] - 2026-03-19

### Added
Expand Down
1 change: 1 addition & 0 deletions infra/tf-outputs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"api_url": "https://wezevk884h.execute-api.us-east-1.amazonaws.com/prod/", "control_plane_lambda_arn": "arn:aws:lambda:us-east-1:712023778557:function:raja-standalone-control-plane", "datazone_domain_id": "dzd-6w14ep5r5owwh3", "datazone_guests_environment_role_arn": "arn:aws:iam::712023778557:role/raja-dz-env-guests", "datazone_guests_project_id": "b3byg401pnpjjb", "datazone_owner_environment_role_arn": "arn:aws:iam::712023778557:role/raja-dz-env-owner", "datazone_owner_project_id": "ag00w9am11jcx3", "datazone_package_asset_type": "QuiltPackage", "datazone_package_asset_type_revision": "2", "datazone_portal_url": "https://dzd-6w14ep5r5owwh3.sagemaker.us-east-1.on.aws", "datazone_users_environment_role_arn": "arn:aws:iam::712023778557:role/raja-dz-env-users", "datazone_users_project_id": "bm7eqh5dc6olrb", "ecs_cluster_name": "raja-standalone-rajee-cluster", "ecs_service_name": "raja-standalone-rajee-service", "envoy_image_tag": "4577563f", "envoy_repository_uri": "712023778557.dkr.ecr.us-east-1.amazonaws.com/raja/envoy", "iceberg_lf_database_name": "raja-standalone-iceberg-lf", "jwt_secret_arn": "arn:aws:secretsmanager:us-east-1:712023778557:secret:raja-standalone-jwt-signing-key-UhfCGh", "rajee_admin_url": "", "rajee_endpoint": "http://raja-standalone-rajee-alb-2076392115.us-east-1.elb.amazonaws.com", "rajee_registry_bucket_name": "raja-poc-registry-712023778557-us-east-1", "rajee_test_bucket_name": "raja-poc-test-712023778557-us-east-1", "rale_authorizer_arn": "arn:aws:lambda:us-east-1:712023778557:function:raja-standalone-rale-authorizer", "rale_authorizer_url": "https://pz3444rqvmy6foufbjovcc3phu0lgbnu.lambda-url.us-east-1.on.aws/", "rale_router_arn": "arn:aws:lambda:us-east-1:712023778557:function:raja-standalone-rale-router", "rale_router_url": "https://ueiilftoaxf3fmv5b25iuike240plpvp.lambda-url.us-east-1.on.aws/", "datazone_projects": "{\"alpha\": {\"project_id\": \"ag00w9am11jcx3\", \"project_label\": \"Alpha\", \"environment_id\": \"dmko3lxbkmo4yv\"}, \"bio\": {\"project_id\": \"bm7eqh5dc6olrb\", \"project_label\": \"Bio\", \"environment_id\": \"ax3bgrnehcwfxj\"}, \"compute\": {\"project_id\": \"b3byg401pnpjjb\", \"project_label\": \"Compute\", \"environment_id\": \"4cr6qj7biuk5d3\"}}", "datazone_project_ids": {"alpha": "ag00w9am11jcx3", "bio": "bm7eqh5dc6olrb", "compute": "b3byg401pnpjjb"}, "datazone_project_environment_ids": {"alpha": "dmko3lxbkmo4yv", "bio": "ax3bgrnehcwfxj", "compute": "4cr6qj7biuk5d3"}}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "raja"
version = "1.3.0"
version = "1.3.1"
description = "Add your description here"
readme = "README.md"
authors = [
Expand Down
Loading