Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-chat-integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-chat-integration
Commits
8e01fe1d
Verified
Commit
8e01fe1d
authored
2 months ago
by
Alex Timmermann
Browse files
Options
Downloads
Patches
Plain Diff
feat(infra): add DLQ topic and retry policy for pubsub
parent
81d4f76c
Branches
NOISSUE-pubsub-dlq
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
terraform/environments/pubsub.tf
+19
-1
19 additions, 1 deletion
terraform/environments/pubsub.tf
terraform/environments/vars.tf
+2
-0
2 additions, 0 deletions
terraform/environments/vars.tf
with
21 additions
and
1 deletion
terraform/environments/pubsub.tf
+
19
−
1
View file @
8e01fe1d
locals
{
main_topic
=
local
.
is_production
?
data
.
terraform_remote_state
.
okuna_common_state
.
outputs
.
google_pubsub_topic_okuna_production
:
data
.
terraform_remote_state
.
okuna_common_state
.
outputs
.
google_pubsub_topic_okuna_staging
dlq_topic
=
local
.
is_production
?
data
.
terraform_remote_state
.
okuna_common_state
.
outputs
.
google_pubsub_topic_okuna_production_dlq
:
data
.
terraform_remote_state
.
okuna_common_state
.
outputs
.
google_pubsub_topic_okuna_staging_dlq
max_attemts
=
10
min_backoff
=
"2s"
max_backoff
=
"10s"
}
resource
"google_pubsub_subscription"
"holi-chat-integration-okuna-sub"
{
project
=
data
.
terraform_remote_state
.
holi_infra_state
.
outputs
.
shared_project_id
name
=
random_id
.
main
.
hex
topic
=
local
.
environment_name
==
"production"
?
data
.
terraform_remote_state
.
okuna_common_state
.
outputs
.
google_pubsub_topic_okuna_production
:
data
.
terraform_remote_state
.
okuna_common_state
.
outputs
.
google_pubsub_topic_okuna_staging
topic
=
local
.
main_topic
ack_deadline_seconds
=
10
*
60
# 10 minutes, max. value
expiration_policy
{
...
...
@@ -16,4 +24,14 @@ resource "google_pubsub_subscription" "holi-chat-integration-okuna-sub" {
service_account_email
=
data
.
terraform_remote_state
.
holi_chat_integration_common_state
.
outputs
.
function_service_account
}
}
retry_policy
{
minimum_backoff
=
local
.
min_backoff
maximum_backoff
=
local
.
max_backoff
}
dead_letter_policy
{
dead_letter_topic
=
local
.
dlq_topic
max_delivery_attempts
=
local
.
max_attemts
}
}
This diff is collapsed.
Click to expand it.
terraform/environments/vars.tf
+
2
−
0
View file @
8e01fe1d
...
...
@@ -5,4 +5,6 @@ locals {
environment_type
=
contains
([
"staging"
,
"production"
],
local
.
environment
)
?
local
.
environment
:
"review"
default_region
=
data
.
terraform_remote_state
.
holi_infra_state
.
outputs
.
default_region
is_production
=
local
.
environment_name
==
"production"
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment