Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions terraform/nowcasting/development/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ module "data_platform_api" {


# 9.0 Primaries API
module "quartz-api" {
module "uk-primaries-quartz-api" {
source = "../../modules/services/eb_app"
domain = local.domain
aws-region = var.region
Expand All @@ -359,7 +359,7 @@ module "quartz-api" {
{ "name" : "HOST_URL", "value":"http://uk-development-quartz-api.eu-west-1.elasticbeanstalk.com"}
]
container-name = "quartz-api"
container-tag = var.quartz-api
container-tag = var.uk-primaries-quartz-api
container-registry = "ghcr.io/openclimatefix"
eb-app_name = "quartz-api"
s3_bucket = []
Expand Down
12 changes: 6 additions & 6 deletions terraform/nowcasting/development/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,6 @@ variable "data_platform_api_version" {
default = "update-build-location"
}

variable "quartz-api" {
type = string
description = "Docker image tag for the quartz api"
default = "0.3.4"
}

variable "uk-national-quartz-api" {
type = string
description = "Docker image tag for the uk national quartz api"
Expand All @@ -115,6 +109,12 @@ variable "apitally_open_quartz_client_id" {
default = ""
}

variable "uk-primaries-quartz-api" {
type = string
description = "Docker image tag for the quartz api"
default = "1.0.14"
}

variable "historic_sat_s3_bucket" {
type = string
description = "S3 bucket for historic satellite GeoTIFFs"
Expand Down