Skip to content

Commit

Permalink
Merge pull request #790 from cisagov/AL-fix-backend-build
Browse files Browse the repository at this point in the history
BUG: Fix backend domain parameter creation
  • Loading branch information
schmelz21 authored Feb 10, 2025
2 parents cae9ef8 + b69af53 commit 2f4d4e9
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,31 @@ resource "aws_ssm_parameter" "prod_api_domain" {
resource "aws_ssm_parameter" "stage_api_domain" {
name = "/crossfeed/staging/DOMAIN"
type = "String"
value = var.api_domain
value = "api.staging.crossfeed.cyber.dhs.gov"
overwrite = true

tags = {
Project = var.project
Owner = "Crossfeed managed resource"
}
}

resource "aws_ssm_parameter" "stage_cd_api_domain" {
name = "/crossfeed/staging/DOMAIN"
type = "String"
value = "api.staging-cd.crossfeed.cyber.dhs.gov"
overwrite = true

tags = {
Project = var.project
Owner = "Crossfeed managed resource"
}
}

resource "aws_ssm_parameter" "integration_api_domain" {
name = "/crossfeed/integration/DOMAIN"
type = "String"
value = "api.integration.crossfeed.cyber.dhs.gov"
overwrite = true

tags = {
Expand Down

0 comments on commit 2f4d4e9

Please sign in to comment.