File tree Expand file tree Collapse file tree 8 files changed +11
-4
lines changed
Expand file tree Collapse file tree 8 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 2929 "use-pro": "true",
3030 }
3131 env :
32- LOCALSTACK_API_KEY : ${{ secrets.LOCALSTACK_API_KEY }}
32+ # intentially left `LOCALSTACK_API_KEY` as env here, to ensure the fallback still works for old version
33+ LOCALSTACK_API_KEY : ${{ secrets.LOCALSTACK_API_KEY }}
3334 GH_ACTION_VERSION : ${{ (github.event_name == 'pull_request' && github.event.pull_request.head.sha) || github.ref_name }}
3435
3536 - name : Run Version Test Against LocalStack
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ inputs:
1616 required : true
1717 default : ' true'
1818 use-pro :
19- description : ' Whether to use LocalStack Pro (requires a valid API key )'
19+ description : ' Whether to use LocalStack Pro (requires a valid CI Auth Token )'
2020 required : false
2121 default : ' false'
2222 configuration :
Original file line number Diff line number Diff line change 11name : ' Save/Load a LocalStack Cloud Pod'
2+ description : ' Save or load a LocalStack Cloud Pod'
23
34inputs :
45 name :
Original file line number Diff line number Diff line change 11name : Finish CI Build
2+ description : Finish CI Build
23
34inputs :
45 github-token :
Original file line number Diff line number Diff line change 11name : ' Save/Load LocalStack state'
2+ description : ' Save or load LocalStack state'
23
34inputs :
45 name :
Original file line number Diff line number Diff line change 11name : Start CI Build
2+ description : Start CI Build
23
34inputs :
45 github-token :
Original file line number Diff line number Diff line change 11name : ' Start up Localstack'
2+ description : ' Starts up Localstack'
23
34inputs :
45 image-tag :
@@ -10,7 +11,7 @@ inputs:
1011 required : true
1112 default : ' true'
1213 use-pro :
13- description : ' Whether to use LocalStack Pro (requires a valid API key )'
14+ description : ' Whether to use LocalStack Pro (requires a valid CI Auth Token )'
1415 required : false
1516 default : ' false'
1617 configuration :
6263 run : |
6364 if [ "$USE_PRO" = true ]; then
6465 if [ "x$LOCALSTACK_AUTH_TOKEN" = "x" -o "x$LOCALSTACK_API_KEY" = "x" ]; then
65- echo "WARNING: LocalStack API key not detected, please verify your configuration..."
66+ echo "WARNING: LocalStack Auth Token not detected, please verify your configuration..."
6667 fi
6768 CONFIGURATION="DNS_ADDRESS=127.0.0.1 ${CONFIGURATION}"
6869 IMAGE_NAME="${IMAGE_NAME:-localstack/localstack-pro:${IMAGE_TAG}}"
Original file line number Diff line number Diff line change 11name : ' Install Localstack tools'
2+ description : ' Installs `localstack` and optionally `awslocal` CLI'
23
34inputs :
45 install-awslocal :
You can’t perform that action at this time.
0 commit comments