1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-18 05:18:24 +02:00

fix(terraformExecute): deactivate entrypoint (#3218)

* fix(terraformExecute): deactivate entrypoint

* fix

Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
This commit is contained in:
Christian Volk 2021-10-28 13:14:29 +02:00 committed by GitHub
parent a0ad624b9a
commit adcc0447ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -158,7 +158,7 @@ func terraformExecuteMetadata() config.StepData {
},
},
Containers: []config.Container{
{Name: "terraform", Image: "hashicorp/terraform:0.14.7"},
{Name: "terraform", Image: "hashicorp/terraform:0.14.7", Options: []config.Option{{Name: "--entrypoint", Value: ""}}},
},
},
}

View File

@ -32,3 +32,6 @@ spec:
containers:
- name: terraform
image: hashicorp/terraform:0.14.7
options:
- name: --entrypoint
value: ''