File tree Expand file tree Collapse file tree 4 files changed +7
-30
lines changed
terraform/python/ec2/default Expand file tree Collapse file tree 4 files changed +7
-30
lines changed Original file line number Diff line number Diff line change 4949 CPU_ARCHITECTURE : ${{ inputs.cpu-architecture }}
5050 ADOT_WHEEL_NAME : ${{ inputs.staging-wheel-name }}
5151 OTEL_SOURCE : ${{ inputs.otel-source }}
52- SAMPLE_APP_ZIP : s3://aws-appsignals-sample-app-prod-${{ inputs.aws-region }}/python-sample-app-delete-me .zip
52+ SAMPLE_APP_ZIP : s3://aws-appsignals-sample-app-prod-${{ inputs.aws-region }}/python-sample-app.zip
5353 E2E_TEST_ACCOUNT_ID : ${{ secrets.APPLICATION_SIGNALS_E2E_TEST_ACCOUNT_ID }}
5454 E2E_TEST_ROLE_NAME : ${{ secrets.APPLICATION_SIGNALS_E2E_TEST_ROLE_NAME }}
5555 METRIC_NAMESPACE : ApplicationSignals
Original file line number Diff line number Diff line change @@ -48,11 +48,11 @@ jobs:
4848
4949 - name : Build Sample App Zip
5050 working-directory : sample-apps/python
51- run : zip -r python-sample-app-delete-me .zip .
51+ run : zip -r python-sample-app.zip .
5252
5353 - name : Upload to S3
5454 working-directory : sample-apps/python
55- run : aws s3api put-object --bucket ${{ secrets.APP_SIGNALS_E2E_EC2_JAR }}-prod-${{ matrix.aws-region }} --body ./python-sample-app-delete-me .zip --key python-sample-app-delete-me .zip
55+ run : aws s3api put-object --bucket ${{ secrets.APP_SIGNALS_E2E_EC2_JAR }}-prod-${{ matrix.aws-region }} --body ./python-sample-app.zip --key python-sample-app.zip
5656
5757 - name : Build Gen AI Sample App Zip
5858 working-directory : sample-apps/python/genai_service
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -161,8 +161,8 @@ resource "null_resource" "main_service_setup" {
161161 ${ var . get_adot_wheel_command }
162162
163163 # Get and run the sample application with configuration
164- aws s3 cp ${ var . sample_app_zip } ./python-sample-app-delete-me .zip
165- unzip -o python-sample-app-delete-me .zip
164+ aws s3 cp ${ var . sample_app_zip } ./python-sample-app.zip
165+ unzip -o python-sample-app.zip
166166
167167 # Export environment variables for instrumentation
168168 cd ./django_frontend_service
@@ -294,8 +294,8 @@ resource "null_resource" "remote_service_setup" {
294294 ${ var . get_adot_wheel_command }
295295
296296 # Get and run the sample application with configuration
297- aws s3 cp ${ var . sample_app_zip } ./python-sample-app-delete-me .zip
298- unzip -o python-sample-app-delete-me .zip
297+ aws s3 cp ${ var . sample_app_zip } ./python-sample-app.zip
298+ unzip -o python-sample-app.zip
299299
300300 # Export environment variables for instrumentation
301301 cd ./django_remote_service
You can’t perform that action at this time.
0 commit comments