Skip to content

Commit

Permalink
update defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
sethpollack committed Apr 23, 2018
1 parent 1dd8002 commit de64e29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,13 @@ func main() {
var (
healthzPath = flag.String("healthz-path", "/healthz", "healthcheck path")
healthzPort = flag.String("health-port", ":8080", "healthcheck port")
addr = flag.String("listen", "/tmp/awsencryptionprovider.sock", "GRPC listen address")
addr = flag.String("listen", "/var/run/kmsplugin/socket.sock", "GRPC listen address")
key = flag.String("key", "", "AWS KMS Key")
region = flag.String("region", "us-east-1", "AWS Region")
)

flag.Set("logtostderr", "true")

flag.Parse()

c, err := cloud.New(*region)
Expand Down

0 comments on commit de64e29

Please sign in to comment.