test terraform

master
ermisw 2023-10-03 13:23:10 +02:00
parent 13c619eaf0
commit 7bb6d79957
1 changed files with 8 additions and 0 deletions

8
Jenkinsfile vendored
View File

@ -14,6 +14,11 @@ pipeline {
command: command:
- cat - cat
tty: true tty: true
- name: terraform
image: hashicorp/terraform:latest
command:
- cat
tty: true
- name: busybox - name: busybox
image: busybox image: busybox
command: command:
@ -32,6 +37,9 @@ pipeline {
container('busybox') { container('busybox') {
sh '/bin/busybox' sh '/bin/busybox'
} }
container('terraform') {
sh 'terraform version'
}
} }
} }
} }