Skip to content

Commit

Permalink
make ingress service names dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
emmastephenson committed Nov 8, 2023
1 parent 554f968 commit e10b6aa
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Binary file modified terraform/implementation/ingress-chart-0.1.10.tgz
Binary file not shown.
21 changes: 21 additions & 0 deletions terraform/implementation/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,27 @@ resource "helm_release" "building_blocks" {
name = "validationUrl"
value = "https://${var.resource_group_name}-${terraform.workspace}.${var.location}.cloudapp.azure.com/validation"
}

set {
name = "ingestionServiceName"
value = "phdi-playground-${terraform.workspace}-ingestion-ingestion-service"
}

set {
name = "fhirConverterServiceName"
value = "phdi-playground-${terraform.workspace}-fhir-converter-fhir-converter-service"
}

set {
name = "messageParserServiceName"
value = "phdi-playground-${terraform.workspace}-message-parser-message-parser-service"
}

set {
name = "validationServiceName"
value = "phdi-playground-${terraform.workspace}-validation-validation-service"
}

}

resource "helm_release" "ingress-temp" {
Expand Down

0 comments on commit e10b6aa

Please sign in to comment.