blob: 20009c995221be4c4560e4a7497385aee479f12c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
check "terraform" terraform -version
check "tflint" tflint --version
# Report result
reportResults
|