Skip to content

Commit

Permalink
feature #5 - add ssm
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeniosales committed Oct 16, 2022
1 parent e78a238 commit ab69138
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions terraform/ssm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@ resource "aws_ssm_parameter" "exchange-rate-api-token-ssm" {
value = "custom"
overwrite = true
}

resource "aws_ssm_parameter" "exchange-rate-internal-url-ssm" {
name = "/exchangerate/infra/alb/arn"
type = "String"
value = "${var.EXCHANGE_RATE_INTERNAL_URL}"
overwrite = true
}

0 comments on commit ab69138

Please sign in to comment.