File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,8 @@ jobs:
105
105
id : wait-for-agents
106
106
working-directory : ${{ env.INTEGRATIONS_SETUP_DIR }}
107
107
timeout-minutes : 1
108
+ env :
109
+ STACK_VERSION : " ${{ env.ELK_VERSION }}"
108
110
run : |
109
111
poetry run python ./agents_enrolled.py
110
112
@@ -115,7 +117,6 @@ jobs:
115
117
aws cloudformation delete-stack --stack-name ${{ env.CNVM_STACK_NAME }}
116
118
aws cloudformation wait stack-delete-complete --stack-name ${{ env.CNVM_STACK_NAME }}
117
119
118
-
119
120
Deploy-CloudFormation-DirectKeys :
120
121
name : " Deploy CloudFormation DirectKeys"
121
122
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -86,4 +86,6 @@ def uses_new_fleet_api_response(version: str) -> bool:
86
86
Returns:
87
87
bool: True if the version uses the new Fleet API response format, False otherwise.
88
88
"""
89
+ if not version :
90
+ return ValueError ("Stack version must be provided." )
89
91
return version .startswith ("9." ) or version .startswith ("8.17" )
You can’t perform that action at this time.
0 commit comments