Skip to content

Commit a1df775

Browse files
authored
Support SQS endpoint configurations (#70)
1 parent 00e8647 commit a1df775

File tree

15 files changed

+294
-169
lines changed

15 files changed

+294
-169
lines changed

.goreleaser.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ checksum:
2020
name_template: "checksums.txt"
2121

2222
archives:
23-
- format: tar.gz
23+
- formats: [ tar.gz ]
2424
name_template: >-
2525
{{ .ProjectName }}_
2626
{{- title .Os }}_
@@ -30,7 +30,7 @@ archives:
3030
{{- if .Arm }}v{{ .Arm }}{{ end }}
3131
format_overrides:
3232
- goos: windows
33-
format: zip
33+
formats: [ zip ]
3434

3535
changelog:
3636
sort: asc

config/terrable_config.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ type HandlerMapping struct {
99
Name string
1010
Source string
1111
Http map[string]string
12+
Sqs map[string]string
1213
EnvironmentVariables map[string]string
1314
}

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ require (
1010
github.com/evanw/esbuild v0.23.0
1111
github.com/fatih/color v1.18.0
1212
github.com/fsnotify/fsnotify v1.7.0
13+
github.com/google/uuid v1.6.0
1314
github.com/gorilla/mux v1.8.1
1415
github.com/hashicorp/hcl/v2 v2.21.0
1516
github.com/jedib0t/go-pretty/v6 v6.6.3

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ github.com/go-test/deep v1.0.3 h1:ZrJSEWsXzPOxaZnFteGEfooLba+ju3FYIbOrS+rQd68=
4747
github.com/go-test/deep v1.0.3/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA=
4848
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
4949
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
50+
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
51+
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
5052
github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY=
5153
github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ=
5254
github.com/hashicorp/hcl/v2 v2.21.0 h1:lve4q/o/2rqwYOgUg3y3V2YPyD1/zkCLGjIV74Jit14=

0 commit comments

Comments
 (0)