Skip to content

Commit 3b339c3

Browse files
authored
fix tf variable name for k8s version (#1757)
1 parent f51a244 commit 3b339c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/eks-e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
terraform init
122122
if terraform apply --auto-approve \
123123
-var="region=${{ inputs.region }}" \
124-
-var="k8s_version=${{ matrix.arrays.k8s_version }}" \
124+
-var="k8s_version=${{ matrix.arrays.k8sVersion }}" \
125125
-var="nodes=${{ matrix.arrays.nodes }}" \
126126
-var="helm_charts_branch=${{ inputs.helm_charts_branch }}" \
127127
-var="cloudwatch_agent_repository_url=${{ steps.login-ecr.outputs.registry }}" \

.github/workflows/test-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ jobs:
941941
-var="test_dir=${{ matrix.arrays.test_dir }}"\
942942
-var="cwagent_image_repo=${{ steps.login-ecr.outputs.registry }}/${{ env.ECR_INTEGRATION_TEST_REPO }}" \
943943
-var="cwagent_image_tag=${{ inputs.build_id }}" \
944-
-var="k8s_version=${{ matrix.arrays.k8s_version }}"; then
944+
-var="k8s_version=${{ matrix.arrays.k8sVersion }}"; then
945945
terraform destroy -auto-approve
946946
else
947947
terraform destroy -auto-approve && exit 1

0 commit comments

Comments
 (0)