Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
17738fb
test: Remove unnecessary test
alexluong Jun 9, 2025
f46a595
refactor: Differentiate mq infra config vs data-plane config
alexluong Jun 9, 2025
e9a6fc1
chore: gitignore
alexluong Jun 9, 2025
dfd6717
chore: Remove policy from data-plan mq config
alexluong Jun 9, 2025
5296fd5
build: pin air version in dev dockerfile
alexluong Jun 9, 2025
b902b5e
feat: azure mq & mqinfra
alexluong Jun 9, 2025
47b1ccc
chore: go mod tidy
alexluong Jun 9, 2025
23cb811
chore: azure env
alexluong Jun 9, 2025
51f0894
fix: revert
alexluong Jun 9, 2025
9492f14
chore: azureservicebus subscription config
alexluong Jun 9, 2025
559f6c6
chore: update docs gen to only use reflection
leggetter Jun 9, 2025
d9ffee3
chore(docs): update config via docsgen
leggetter Jun 9, 2025
1780e88
chore: enhance placeholder handling in MDX content generation with im…
leggetter Jun 9, 2025
e9df6ca
chore: add command to generate documentation configuration
leggetter Jun 9, 2025
9a655e9
chore: refactor ReflectionFieldInfo and extractFieldsRecursive for im…
leggetter Jun 9, 2025
e8fed56
chore: clean up redundant OTLP exporter and protocol entries in confi…
leggetter Jun 9, 2025
33d3fb4
Merge pull request #426 from hookdeck/chore/improve-config-docs-gen
leggetter Jun 10, 2025
6718b35
chore: Comment unused method
alexluong Jun 10, 2025
2292671
feat(docs): Guide to configure Azure Service Bus as internal MQ
leggetter Jun 10, 2025
b9c06e4
chore(docs): Update documentation to include Azure Service Bus in rel…
leggetter Jun 10, 2025
602fb0d
Merge branch 'azure' of https://github.com/hookdeck/outpost into azure
leggetter Jun 10, 2025
b7c41f3
chore(docs): Add troubleshooting section for Azure Service Bus topic …
leggetter Jun 10, 2025
44608df
chore(docs): Correct grammar in troubleshooting instructions for topi…
leggetter Jun 10, 2025
80b4d76
chore(docs): Add reference to avoid concurrent infra provisioning req…
leggetter Jun 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,17 @@ RABBITMQ_LOG_QUEUE="outpost-log"
# GCP_PUBSUB_LOG_TOPIC="outpost-log"
# GCP_PUBSUB_LOG_SUBSCRIPTION="outpost-log-sub"

## Azure ServiceBus
AZURE_SERVICEBUS_TENANT_ID=""
AZURE_SERVICEBUS_CLIENT_ID=""
AZURE_SERVICEBUS_CLIENT_SECRET=""
AZURE_SERVICEBUS_SUBSCRIPTION_ID=""
AZURE_SERVICEBUS_RESOURCE_GROUP=""
AZURE_SERVICEBUS_NAMESPACE=""
AZURE_SERVICEBUS_DELIVERY_TOPIC="outpost-delivery"
AZURE_SERVICEBUS_DELIVERY_SUBSCRIPTION="outpost-delivery-sub"
AZURE_SERVICEBUS_LOG_TOPIC="outpost-log"
AZURE_SERVICEBUS_LOG_SUBSCRIPTION="outpost-log-sub"


# ============================== PublishMQ ==============================
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ terraform.tfstate.*
.DS_Store
*.log
cmd/dev
.ai/
.bruno/
.cursor/
.ai/
.claude/
*.local.*
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ test/coverage:
test/coverage/html:
go tool cover -html=coverage.out

docs/generate/config:
go run cmd/configdocsgen/main.go

network:
docker network create outpost

Expand Down
2 changes: 1 addition & 1 deletion build/dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM golang:1.23-alpine AS fetch
RUN go install github.com/air-verse/air@latest
RUN go install github.com/air-verse/air@v1.61.1
WORKDIR /app
COPY . .
CMD ["air"]
Loading
Loading