-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add pubsub as module to align to revamp
- Loading branch information
1 parent
d701d82
commit d37c723
Showing
4 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
output "env" { | ||
description = "Elements to be set as environment variables" | ||
value = ({ | ||
"Components__QueueAdaptorSettings__ClassName" = "ArmoniK.Core.Adapters.PubSub.QueueBuilder" | ||
"Components__QueueAdaptorSettings__AdapterAbsolutePath" = "/adapters/queue/pubsub/ArmoniK.Core.Adapters.PubSub.dll" | ||
"PubSub__ProjectId" = var.project_id | ||
"PubSub__KmsKeyName" = var.kms_key_id | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
variable "project_id" { | ||
description = "Id of the google project" | ||
type = string | ||
} | ||
|
||
variable "kms_key_id" { | ||
description = "Id of the crypto KMS used to encrypt/decrypt resources" | ||
type = string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
terraform { | ||
required_version = ">= 1.0" | ||
} |