Skip to content

Commit

Permalink
feature #3 - Add sqs arn in ssm
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeniosales committed Oct 15, 2022
1 parent 5ed322b commit a1f3fa3
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions terraform/ssm.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
resource "aws_ssm_parameter" "ssm-exchange-rate-token" {
name = "/sbf/external/api/exchangerate/token"
resource "aws_ssm_parameter" "update-exchange-rate-queue-arn-ssm" {
name = "/exchangeRate/infra/sqs/updateExchangeRateQueueArn"
type = "String"
value = aws_sqs_queue.shell_credits_refund_queue.arn
overwrite = true
}

resource "aws_ssm_parameter" "exchange-rate-api-token-ssm" {
name = "/exchangeRate/infra/api/exchangeRate/token"
type = "String"
value = "custom.token"
value = ""
}

0 comments on commit a1f3fa3

Please sign in to comment.