Skip to content

Commit f715cc4

Browse files
committed
adds missing refactoring
1 parent 2b87b8c commit f715cc4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

deployments/stacks/dpe-k8s/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ module "synapse-sqs-create-queue" {
7272
cluster_oidc_provider_arn = module.sage-aws-eks.cluster_oidc_provider_arn
7373

7474
# API Gateway integration
75-
api_gateway_id = module.api_gateway.api_id
75+
api_gateway_id = module.synapse-webhook-api-gateway.api_id
7676
route_path = "/create"
7777
}
7878

@@ -85,6 +85,6 @@ module "synapse-sqs-delete-queue" {
8585
cluster_oidc_provider_arn = module.sage-aws-eks.cluster_oidc_provider_arn
8686

8787
# API Gateway integration
88-
api_gateway_id = module.api_gateway.api_id
88+
api_gateway_id = module.synapse-webhook-api-gateway.api_id
8989
route_path = "/delete"
9090
}

deployments/stacks/dpe-k8s/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ output "smtp_password" {
5353

5454
output "synapse_webhook_url" {
5555
description = "The URL to use for Synapse webhook registration"
56-
value = module.synapse-sqs-test.api_gateway_url
56+
value = "${module.synapse-webhook-api-gateway.api_endpoint}/create"
5757
}

0 commit comments

Comments
 (0)