From 7bb6d7995704322216cd21ca635a9171f6c6e837 Mon Sep 17 00:00:00 2001 From: ermisw Date: Tue, 3 Oct 2023 13:23:10 +0200 Subject: [PATCH] test terraform --- Jenkinsfile | 8 ++++++++ 1 file changed, 8 insertions(+) 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' + } } } }