diff --git a/.github/actions/cdk-deploy/action.yml b/.github/actions/cdk-deploy/action.yml index 14fab9c3..fdf9e31c 100644 --- a/.github/actions/cdk-deploy/action.yml +++ b/.github/actions/cdk-deploy/action.yml @@ -100,4 +100,4 @@ runs: working-directory: ${{ inputs.dir }} run: | echo $STAGE - cdk deploy --require-approval never --outputs-file ${HOME}/cdk-outputs.json + cdk deploy --require-approval never --outputs-file ${HOME}/veda-backend-cdk-outputs.json diff --git a/ingest_api/infrastructure/construct.py b/ingest_api/infrastructure/construct.py index 1e763d09..53f7d1f0 100644 --- a/ingest_api/infrastructure/construct.py +++ b/ingest_api/infrastructure/construct.py @@ -98,13 +98,13 @@ def __init__( custom_host=config.custom_host, ) - # CfnOutput(self, "ingest-api", value=self.api.url) stack_name = Stack.of(self).stack_name CfnOutput( self, "stac-ingestor-api-url", export_name=f"{stack_name}-stac-ingestor-api-url", value=self.api.url, + key="ingestapiurl" ) register_ssm_parameter( diff --git a/raster_api/infrastructure/construct.py b/raster_api/infrastructure/construct.py index 95c71265..3574d663 100644 --- a/raster_api/infrastructure/construct.py +++ b/raster_api/infrastructure/construct.py @@ -122,6 +122,7 @@ def __init__( "raster-api", value=self.raster_api.url, export_name=f"{stack_name}-raster-url", + key="rasterapiurl" ) CfnOutput(self, "raster-api-arn", value=veda_raster_function.function_arn) diff --git a/s3_website/infrastructure/construct.py b/s3_website/infrastructure/construct.py index 40d7c07f..933b6568 100644 --- a/s3_website/infrastructure/construct.py +++ b/s3_website/infrastructure/construct.py @@ -50,4 +50,5 @@ def __init__( self, "bucket-website", value=f"https://{self.bucket.bucket_website_domain_name}", + key="stacbrowserurl" ) diff --git a/stac_api/infrastructure/construct.py b/stac_api/infrastructure/construct.py index 272cddca..6180f129 100644 --- a/stac_api/infrastructure/construct.py +++ b/stac_api/infrastructure/construct.py @@ -120,4 +120,5 @@ def __init__( "stac-api", value=self.stac_api.url, export_name=f"{stack_name}-stac-url", + key="stacapiurl" )