mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-28 04:03:27 -04:00
Add ENV['no_proxy'] to chef provisioner
This commit is contained in:
parent
aa05e8262a
commit
5cb4b70e7e
1 changed files with 5 additions and 1 deletions
|
|
@ -60,7 +60,11 @@ ENV['https_proxy'] = "{{ .HTTPSProxy }}"
|
|||
ENV['HTTPS_PROXY'] = "{{ .HTTPSProxy }}"
|
||||
{{ end }}
|
||||
|
||||
{{ if .NOProxy }}no_proxy "{{ join .NOProxy "," }}"{{ end }}
|
||||
{{ if .NOProxy }}
|
||||
no_proxy "{{ join .NOProxy "," }}"
|
||||
ENV['no_proxy'] = "{{ join .NOProxy "," }}"
|
||||
{{ end }}
|
||||
|
||||
{{ if .SSLVerifyMode }}ssl_verify_mode {{ .SSLVerifyMode }}{{ end }}
|
||||
|
||||
{{ if .DisableReporting }}enable_reporting false{{ end }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue