Skip to content

Instantly share code, notes, and snippets.

View ebwang's full-sized avatar
🏠
Working from home

Eduardo Bogossian Wang ebwang

🏠
Working from home
View GitHub Profile
@ebwang
ebwang / Jenkinsfile.groovy
Created February 17, 2020 20:18 — forked from andymotta/Jenkinsfile.groovy
Use Terraform latest docker image in Declarative Jenkins Pipeline
pipeline {
agent {
docker {
image 'hashicorp/terraform:latest'
label 'LINUX-SLAVE'
args '--entrypoint="" -u root -v /opt/jenkins/.aws:/root/.aws'
}
}
options {
ansiColor('xterm')