Skip to content

Commit

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

resource "aws_ssm_parameter" "exchange-rate-application-load-balancer-http-arn" {
name = "/exchangeRate/infra/alb/exchangeRate/http/arn"
type = "String"
value = aws_lb_listener.http-lb-sbf-exchangerate.arn
overwrite = true
}

resource "aws_ssm_parameter" "exchange-rate-application-load-balancer-http-url-ssm" {
name = "/exchangeRate/infra/alb/exchangeRate/http/arn"
type = "String"
value = var.base_url_internal
overwrite = true
}

0 comments on commit 1a4885a

Please sign in to comment.