Skip to content

Commit

Permalink
Merge pull request #1 from guido9j/feat-https-proxy
Browse files Browse the repository at this point in the history
Support for HTTPS_PROXY
  • Loading branch information
guido9j authored Sep 10, 2022
2 parents d3ef216 + df7e2ea commit 2616ca6
Show file tree
Hide file tree
Showing 6 changed files with 580 additions and 90 deletions.
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ The following arguments are supported. Defaults to Env variables if not specifie
- `server`: (Required) URL for Gate (Default: Env `GATE_URL`)
- `config`: (Optional) Path to Gate config file. See the [Spin CLI](https://github.com/spinnaker/spin/blob/master/config/example.yaml) for an example config. (Default: Env `SPINNAKER_CONFIG_PATH`)
- `ignore_cert_errors`: (Optional) Ignore certificate errors from Gate (Default: `false`)
- `https_proxy`: (Optional) HTTPS proxy to connect to Gate (Default: `""`)
- `default_headers`: (Optional) A comma separated set of key value pairs to set default headers for the gate client when sending requests to your gate endpoint e.g. "header1=value1,header2=value2". (Default: `""`)
9 changes: 4 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ module github.com/tidal-engineering/terraform-provider-spinnaker
go 1.14

require (
github.com/antihax/optional v1.0.0
github.com/ghodss/yaml v1.0.0
github.com/hashicorp/terraform-plugin-sdk v1.7.0
github.com/mitchellh/mapstructure v1.1.2
github.com/spf13/pflag v1.0.3
github.com/spinnaker/spin v0.0.0-20190530150642-535d2dc1b985
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 // indirect
github.com/hashicorp/terraform-plugin-sdk v1.17.2
github.com/mitchellh/mapstructure v1.5.0
github.com/spinnaker/spin v1.27.1
)

replace git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999
Loading

0 comments on commit 2616ca6

Please sign in to comment.