File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1480,7 +1480,7 @@ jobs:
1480
1480
1481
1481
- name : Apply using explicit ephemeral value
1482
1482
uses : ./terraform-apply
1483
- id : apply
1483
+ id : apply2
1484
1484
with :
1485
1485
label : test-apply ephemeral 2
1486
1486
path : tests/workflows/test-apply/ephemeral
@@ -1490,7 +1490,7 @@ jobs:
1490
1490
1491
1491
- name : Verify outputs
1492
1492
env :
1493
- OUTPUT_STRING : ${{ steps.apply .outputs.v }}
1493
+ OUTPUT_STRING : ${{ steps.apply2 .outputs.v }}
1494
1494
run : |
1495
1495
if [[ "$OUTPUT_STRING" != "hello" ]]; then
1496
1496
echo "::error:: output s not set correctly"
@@ -1511,7 +1511,7 @@ jobs:
1511
1511
- name : Apply using mismatched explicit non-ephemeral value
1512
1512
uses : ./terraform-apply
1513
1513
continue-on-error : true
1514
- id : apply
1514
+ id : apply3
1515
1515
with :
1516
1516
label : test-apply ephemeral 3
1517
1517
path : tests/workflows/test-apply/ephemeral
@@ -1521,7 +1521,7 @@ jobs:
1521
1521
1522
1522
- name : Check failed to apply
1523
1523
env :
1524
- OUTCOME : ${{ steps.apply .outcome }}
1524
+ OUTCOME : ${{ steps.apply3 .outcome }}
1525
1525
run : |
1526
1526
if [[ "$OUTCOME" != "failure" ]]; then
1527
1527
echo "Apply did not fail correctly"
Original file line number Diff line number Diff line change @@ -400,6 +400,8 @@ function set-plan-args() {
400
400
401
401
function set-remote-plan-args() {
402
402
set-common-plan-args
403
+ VARIABLE_ARGS=" "
404
+ DEPRECATED_VAR_ARGS=" "
403
405
404
406
local AUTO_TFVARS_COUNTER=0
405
407
You can’t perform that action at this time.
0 commit comments