-
-
Notifications
You must be signed in to change notification settings - Fork 160
724 lines (631 loc) · 24.7 KB
/
test-cloud.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
name: Test Terraform cloud
on:
- pull_request
permissions:
contents: read
jobs:
workspaces:
runs-on: ubuntu-24.04
name: Terraform Cloud
permissions:
contents: read
pull-requests: write
strategy:
fail-fast: false
matrix:
tf_version: ['0.13', '1.0']
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Create a new workspace with no existing workspaces
uses: ./terraform-new-workspace
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-1
backend_config: token=${{ secrets.TF_API_TOKEN }}
- name: Create a new workspace when it doesn't exist
uses: ./terraform-new-workspace
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-2
backend_config: token=${{ secrets.TF_API_TOKEN }}
- name: Create a new workspace when it already exists
uses: ./terraform-new-workspace
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-2
backend_config: token=${{ secrets.TF_API_TOKEN }}
- name: Auto apply workspace
uses: ./terraform-apply
id: auto_apply
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-1
backend_config: token=${{ secrets.TF_API_TOKEN }}
auto_approve: true
var_file: |
tests/workflows/test-cloud/${{ matrix.tf_version }}/my_variable.tfvars
variables: |
from_variables="from_variables"
- name: Verify auto_apply terraform outputs
env:
OUTPUT_DEFAULT: ${{ steps.auto_apply.outputs.default }}
FROM_TFVARS: ${{ steps.auto_apply.outputs.from_tfvars }}
FROM_VARIABLES: ${{ steps.auto_apply.outputs.from_variables }}
TEXT_PLAN_PATH: ${{ steps.auto_apply.outputs.text_plan_path }}
JSON_PLAN_PATH: ${{ steps.auto_apply.outputs.json_plan_path }}
RUN_ID: ${{ steps.auto_apply.outputs.run_id }}
run: |
if [[ "$OUTPUT_DEFAULT" != "default" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if [[ "$FROM_TFVARS" != "from_tfvars" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if [[ "$FROM_VARIABLES" != "from_variables" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if [[ -n "$TEXT_PLAN_PATH" ]]; then
echo "::error:: text_plan_path should not be set"
exit 1
fi
if [[ -n "$JSON_PLAN_PATH" ]]; then
echo "::error:: json_plan_path should not be set"
exit 1
fi
if [[ "$RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
- name: Get outputs
uses: ./terraform-output
id: output
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-1
backend_config: token=${{ secrets.TF_API_TOKEN }}
- name: Verify auto_apply terraform outputs with workspace prefix
env:
OUTPUT_DEFAULT: ${{ steps.output.outputs.default }}
run: |
if [[ "$OUTPUT_DEFAULT" != "default" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
- name: Setup terraform with workspace name
env:
HEAD_REF: ${{ github.head_ref }}
run: |
mkdir fixed-workspace-name
if [[ "${{ matrix.tf_version }}" == "0.13" ]]; then
sed -e 's/prefix.*/name = "github-actions-0-13-'"$HEAD_REF"'-1"/' tests/workflows/test-cloud/${{ matrix.tf_version }}/main.tf > fixed-workspace-name/main.tf
else
sed -e 's/prefix.*/name = "github-actions-1-1-'"$HEAD_REF"'-1"/' tests/workflows/test-cloud/${{ matrix.tf_version }}/main.tf > fixed-workspace-name/main.tf
fi
- name: Get outputs
uses: ./terraform-output
id: name-output
with:
path: fixed-workspace-name
backend_config: token=${{ secrets.TF_API_TOKEN }}
- name: Verify auto_apply terraform outputs with workspace name
env:
OUTPUT_DEFAULT: ${{ steps.name-output.outputs.default }}
run: |
if [[ "$OUTPUT_DEFAULT" != "default" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
- name: Check no changes
uses: ./terraform-check
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-1
backend_config: token=${{ secrets.TF_API_TOKEN }}
var_file: |
tests/workflows/test-cloud/${{ matrix.tf_version }}/my_variable.tfvars
variables: |
from_variables="from_variables"
- name: Check changes
uses: ./terraform-check
id: check
continue-on-error: true
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-1
backend_config: token=${{ secrets.TF_API_TOKEN }}
var_file: |
tests/workflows/test-cloud/${{ matrix.tf_version }}/my_variable.tfvars
variables: |
from_variables="Changed!"
- name: Verify changes detected
env:
CHECK_OUTCOME: ${{ steps.check.outcome }}
FAILURE_REASON: ${{ steps.check.outputs.failure-reason }}
run: |
if [[ "$CHECK_OUTCOME" != "failure" ]]; then
echo "Check didn't fail correctly"
exit 1
fi
if [[ "$FAILURE_REASON" != "changes-to-apply" ]]; then
echo "failure-reason not set correctly"
exit 1
fi
- name: Destroy workspace
uses: ./terraform-destroy-workspace
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-1
backend_config: token=${{ secrets.TF_API_TOKEN }}
- name: Plan workspace
uses: ./terraform-plan
id: plan
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-2
backend_config: token=${{ secrets.TF_API_TOKEN }}
var_file: |
tests/workflows/test-cloud/${{ matrix.tf_version }}/my_variable.tfvars
variables: |
from_variables="from_variables"
- name: Verify plan outputs
env:
PLAN_CHANGES: ${{ steps.plan.outputs.changes }}
TEXT_PLAN_PATH: ${{ steps.plan.outputs.text_plan_path }}
JSON_PLAN_PATH: ${{ steps.plan.outputs.json_plan_path }}
RUN_ID: ${{ steps.plan.outputs.run_id }}
run: |
if [[ "$PLAN_CHANGES" != "true" ]]; then
echo "::error:: output changes not set correctly"
exit 1
fi
if ! grep -q "Terraform will perform the following actions" "$TEXT_PLAN_PATH"; then
echo "::error:: text_plan_path not set correctly"
exit 1
fi
if [[ "$RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
jq .output_changes.from_variables.actions[0] "$JSON_PLAN_PATH"
if [[ $(jq -r .output_changes.from_variables.actions[0] "$JSON_PLAN_PATH") != "create" ]]; then
echo "::error:: json_plan_path not set correctly"
exit 1
fi
- name: Apply workspace
uses: ./terraform-apply
id: apply
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-2
backend_config: token=${{ secrets.TF_API_TOKEN }}
var_file: |
tests/workflows/test-cloud/${{ matrix.tf_version }}/my_variable.tfvars
variables: |
from_variables="from_variables"
- name: Verify apply terraform outputs
env:
OUTPUT_DEFAULT: ${{ steps.apply.outputs.default }}
FROM_TFVARS: ${{ steps.apply.outputs.from_tfvars }}
FROM_VARIABLES: ${{ steps.apply.outputs.from_variables }}
TEXT_PLAN_PATH: ${{ steps.apply.outputs.text_plan_path }}
JSON_PLAN_PATH: ${{ steps.apply.outputs.json_plan_path }}
RUN_ID: ${{ steps.apply.outputs.run_id }}
run: |
if [[ "$OUTPUT_DEFAULT" != "default" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if [[ "$FROM_TFVARS" != "from_tfvars" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if [[ "$FROM_VARIABLES" != "from_variables" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if ! grep -q "Terraform will perform the following actions" "$TEXT_PLAN_PATH"; then
echo "::error:: text_plan_path not set correctly"
exit 1
fi
if [[ -n "$JSON_PLAN_PATH" ]]; then
echo "::error:: json_plan_path should not be set"
exit 1
fi
if [[ "$RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
- name: Destroy the last workspace
uses: ./terraform-destroy-workspace
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-2
backend_config: token=${{ secrets.TF_API_TOKEN }}
- name: Destroy non-existent workspace
uses: ./terraform-destroy-workspace
continue-on-error: true
id: destroy-non-existant-workspace
with:
path: tests/workflows/test-cloud/${{ matrix.tf_version }}
workspace: ${{ github.head_ref }}-1
backend_config: token=${{ secrets.TF_API_TOKEN }}
- name: Check failed to destroy
env:
DESTROY_OUTCOME: ${{ steps.destroy-non-existant-workspace.outcome }}
run: |
if [[ "$DESTROY_OUTCOME" != "failure" ]]; then
echo "Destroy non-existant workspace"
exit 1
fi
cloud:
runs-on: ubuntu-24.04
name: Partial cloud config
permissions:
contents: read
pull-requests: write
env:
TF_CLOUD_ORGANIZATION: flooktech
TERRAFORM_CLOUD_TOKENS: app.terraform.io=${{ secrets.TF_API_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Create a new workspace with no existing workspaces
uses: ./terraform-new-workspace
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-1
- name: Create a new workspace when it doesn't exist
uses: ./terraform-new-workspace
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-2
- name: Create a new workspace when it already exists
uses: ./terraform-new-workspace
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-2
- name: Auto apply workspace
uses: ./terraform-apply
id: auto_apply
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-1
auto_approve: true
- name: Verify auto_apply terraform outputs
env:
OUTPUT_LEN: ${{ steps.auto_apply.outputs.len }}
TEXT_PLAN_PATH: ${{ steps.auto_apply.outputs.text_plan_path }}
JSON_PLAN_PATH: ${{ steps.auto_apply.outputs.json_plan_path }}
RUN_ID: ${{ steps.auto_apply.outputs.run_id }}
run: |
if [[ "$OUTPUT_LEN" != "5" ]]; then
echo "::error:: output not set correctly"
exit 1
fi
if ! grep -q "Terraform will perform the following actions" "$TEXT_PLAN_PATH"; then
echo "::error:: text_plan_path not set correctly"
exit 1
fi
if [[ ! -f "$JSON_PLAN_PATH" ]]; then
echo "::error:: json_plan_path should be set"
exit 1
fi
if [[ "$RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
- name: Get outputs
uses: ./terraform-output
id: output
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-1
- name: Verify terraform-output outputs
env:
OUTPUT_LEN: ${{ steps.output.outputs.len }}
run: |
if [[ "$OUTPUT_LEN" != "5" ]]; then
echo "::error:: output not set correctly"
exit 1
fi
- name: Check no changes
uses: ./terraform-check
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-1
- name: Check changes
uses: ./terraform-check
id: check
continue-on-error: true
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-1
variables: |
length=6
- name: Verify changes detected
env:
CHECK_OUTCOME: ${{ steps.check.outcome }}
FAILURE_REASON: ${{ steps.check.outputs.failure-reason }}
run: |
if [[ "$CHECK_OUTCOME" != "failure" ]]; then
echo "Check didn't fail correctly"
exit 1
fi
if [[ "$FAILURE_REASON" != "changes-to-apply" ]]; then
echo "failure-reason not set correctly"
exit 1
fi
- name: Destroy workspace
uses: ./terraform-destroy-workspace
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-1
- name: Plan changes
uses: ./terraform-plan
id: plan
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
label: test-cloud cloud plan
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-2
- name: Verify plan outputs
env:
PLAN_CHANGES: ${{ steps.plan.outputs.changes }}
TEXT_PLAN_PATH: ${{ steps.plan.outputs.text_plan_path }}
JSON_PLAN_PATH: ${{ steps.plan.outputs.json_plan_path }}
RUN_ID: ${{ steps.plan.outputs.run_id }}
run: |
if [[ "$PLAN_CHANGES" != "true" ]]; then
echo "::error:: output changes not set correctly"
exit 1
fi
if ! grep -q "Terraform will perform the following actions" "$TEXT_PLAN_PATH"; then
echo "::error:: text_plan_path not set correctly"
exit 1
fi
if [[ ! -f "$JSON_PLAN_PATH" ]]; then
echo "::error:: json_plan_path should be set"
exit 1
fi
if [[ "$RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
- name: Apply changes
uses: ./terraform-apply
id: apply
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
label: test-cloud cloud plan
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-2
- name: Verify apply terraform outputs
env:
OUTPUT_LEN: ${{ steps.apply.outputs.len }}
TEXT_PLAN_PATH: ${{ steps.apply.outputs.text_plan_path }}
JSON_PLAN_PATH: ${{ steps.apply.outputs.json_plan_path }}
RUN_ID: ${{ steps.apply.outputs.run_id }}
run: |
if [[ "$OUTPUT_LEN" != "5" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if ! grep -q "Terraform will perform the following actions" "$TEXT_PLAN_PATH"; then
echo "::error:: text_plan_path not set correctly"
exit 1
fi
if [[ ! -f "$JSON_PLAN_PATH" ]]; then
echo "::error:: json_plan_path should be set"
exit 1
fi
if [[ "$RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
- name: Plan no changes
uses: ./terraform-plan
id: plan-no-changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
label: test-cloud cloud plan-no-changes
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-2
- name: Apply no changes
uses: ./terraform-apply
id: apply-no-changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
label: test-cloud cloud plan-no-changes
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-2
- name: Verify apply with no changes
env:
PLAN_CHANGES: ${{ steps.plan-no-changes.outputs.changes }}
APPLY_OUTPUT_LEN: ${{ steps.apply-no-changes.outputs.len }}
PLAN_TEXT_PLAN_PATH: ${{ steps.plan-no-changes.outputs.text_plan_path }}
APPLY_TEXT_PLAN_PATH: ${{ steps.apply-no-changes.outputs.text_plan_path }}
PLAN_JSON_PLAN_PATH: ${{ steps.plan-no-changes.outputs.json_plan_path }}
APPLY_JSON_PLAN_PATH: ${{ steps.apply-no-changes.outputs.json_plan_path }}
PLAN_RUN_ID: ${{ steps.plan-no-changes.outputs.run_id }}
APPLY_RUN_ID: ${{ steps.apply-no-changes.outputs.run_id }}
run: |
if [[ "$PLAN_CHANGES" != "false" ]]; then
echo "::error:: changes output not set correctly"
exit 1
fi
if [[ "$APPLY_OUTPUT_LEN" != "5" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if ! grep -q "No changes. Your infrastructure matches the configuration." "$PLAN_TEXT_PLAN_PATH"; then
echo "::error:: text_plan_path not set correctly"
exit 1
fi
if ! grep -q "No changes. Your infrastructure matches the configuration." "$APPLY_TEXT_PLAN_PATH"; then
echo "::error:: text_plan_path not set correctly"
exit 1
fi
if [[ ! -f "$PLAN_JSON_PLAN_PATH" ]]; then
echo "::error:: json_plan_path should be set"
exit 1
fi
if [[ ! -f "$APPLY_JSON_PLAN_PATH" ]]; then
echo "::error:: json_plan_path should be set"
exit 1
fi
if [[ "$PLAN_RUN_ID}" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
if [[ "$APPLY_RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
- name: Saved plan with changes
uses: ./terraform-plan
id: saved-plan-changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
label: test-cloud cloud save-plan-changes
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-2
variables: |
length=8
- name: Saved apply with changes
uses: ./terraform-apply
id: saved-apply-changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
label: test-cloud cloud save-plan-changes
path: tests/workflows/test-cloud/partial
plan_path: ${{ steps.saved-plan-changes.outputs.plan_path }}
workspace: ${{ github.head_ref }}-cloud-2
variables: |
length=8
- name: Verify saved apply with changes
env:
SAVED_PLAN_CHANGES: ${{ steps.saved-plan-changes.outputs.changes }}
SAVED_APPLY_OUTPUT_LEN: ${{ steps.saved-apply-changes.outputs.len }}
SAVED_PLAN_TEXT_PLAN_PATH: ${{ steps.saved-plan-changes.outputs.text_plan_path }}
SAVED_PLAN_JSON_PLAN_PATH: ${{ steps.saved-plan-changes.outputs.json_plan_path }}
SAVED_PLAN_RUN_ID: ${{ steps.saved-plan-changes.outputs.run_id }}
SAVED_APPLY_RUN_ID: ${{ steps.saved-apply-changes.outputs.run_id }}
run: |
if [[ "$SAVED_PLAN_CHANGES" != "true" ]]; then
echo "::error:: changes output not set correctly"
exit 1
fi
if [[ "$SAVED_APPLY_OUTPUT_LEN" != "8" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if ! grep -q "Terraform will perform the following actions" $SAVED_PLAN_TEXT_PLAN_PATH; then
echo "::error:: text_plan_path not set correctly"
exit 1
fi
if [[ ! -f "$SAVED_PLAN_JSON_PLAN_PATH" ]]; then
echo "::error:: json_plan_path should be set"
exit 1
fi
if [[ "$SAVED_PLAN_RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
if [[ "$SAVED_APPLY_RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
- name: Saved plan with no changes
uses: ./terraform-plan
id: saved-plan-no-changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
label: test-cloud cloud save-plan-no-changes
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-2
variables: |
length=8
- name: Saved apply with no changes
uses: ./terraform-apply
id: saved-apply-no-changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
label: test-cloud cloud save-plan-no-changes
path: tests/workflows/test-cloud/partial
plan_path: ${{ steps.saved-plan-no-changes.outputs.plan_path }}
workspace: ${{ github.head_ref }}-cloud-2
variables: |
length=8
- name: Verify saved apply with no changes
env:
SAVED_PLAN_NO_CHANGES: ${{ steps.saved-plan-no-changes.outputs.changes }}
SAVED_APPLY_OUTPUT_LEN: ${{ steps.saved-apply-no-changes.outputs.len }}
SAVED_PLAN_TEXT_PLAN_PATH: ${{ steps.saved-plan-no-changes.outputs.text_plan_path }}
SAVED_PLAN_JSON_PLAN_PATH: ${{ steps.saved-plan-no-changes.outputs.json_plan_path }}
SAVED_PLAN_RUN_ID: ${{ steps.saved-plan-no-changes.outputs.run_id }}
SAVED_APPLY_RUN_ID: ${{ steps.saved-apply-no-changes.outputs.run_id }}
run: |
if [[ "$SAVED_PLAN_NO_CHANGES" != "false" ]]; then
echo "::error:: changes output not set correctly"
exit 1
fi
if [[ "$SAVED_APPLY_OUTPUT_LEN" != "8" ]]; then
echo "::error:: Variables not set correctly"
exit 1
fi
if ! grep -q "No changes. Your infrastructure matches the configuration." "$SAVED_PLAN_TEXT_PLAN_PATH"; then
echo "::error:: text_plan_path not set correctly"
exit 1
fi
if [[ ! -f "$SAVED_PLAN_JSON_PLAN_PATH" ]]; then
echo "::error:: json_plan_path should be set"
exit 1
fi
if [[ "$SAVED_PLAN_RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
if [[ "$SAVED_APPLY_RUN_ID" != "run-"* ]]; then
echo "::error:: output run_id not set correctly"
exit 1
fi
- name: Destroy the last workspace
uses: ./terraform-destroy-workspace
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-2
- name: Destroy non-existent workspace
uses: ./terraform-destroy-workspace
continue-on-error: true
id: destroy-non-existent-workspace
with:
path: tests/workflows/test-cloud/partial
workspace: ${{ github.head_ref }}-cloud-1
- name: Check failed to destroy
env:
DESTROY_OUTCOME: ${{ steps.destroy-non-existent-workspace.outcome }}
run: |
if [[ "$DESTROY_OUTCOME" != "failure" ]]; then
echo "Destroy non-existant workspace"
exit 1
fi