diff --git a/Jenkinsfile b/Jenkinsfile index c23bd89..bd07f92 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,6 +14,11 @@ pipeline { command: - cat tty: true + - name: terraform + image: hashicorp/terraform:latest + command: + - cat + tty: true - name: busybox image: busybox command: @@ -32,6 +37,9 @@ pipeline { container('busybox') { sh '/bin/busybox' } + container('terraform') { + sh 'terraform version' + } } } }