mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
fixed multi labels
This commit is contained in:
parent
bee98984b4
commit
e9f821c06f
1 changed files with 4 additions and 4 deletions
|
|
@ -90,13 +90,13 @@ module "s3_presignable_bucket" {
|
|||
allowed_origins = var.allowed_origins
|
||||
}
|
||||
|
||||
module "s3" "datalake" {
|
||||
module "datalake" {
|
||||
source = "./modules/s3"
|
||||
bucketname = "retrofit-datalake-${var.stage}"
|
||||
allowed_origins = var.allowed_origins
|
||||
}
|
||||
|
||||
module "s3" "model_directory" {
|
||||
module "model_directory" {
|
||||
source = "./modules/s3"
|
||||
bucketname = "retrofit-model-directory-${var.stage}"
|
||||
allowed_origins = var.allowed_origins
|
||||
|
|
@ -114,12 +114,12 @@ module "route53" {
|
|||
}
|
||||
|
||||
# Create an ECR repository for storage of the lambda's docker images
|
||||
module "ecr" "fastapi_backend_ecr" {
|
||||
module "fastapi_backend_ecr" {
|
||||
name = "fastapi-repository-${var.environment}"
|
||||
source = "./modules/ecr"
|
||||
}
|
||||
|
||||
module "ecr" "lambda_sap_prediction_ecr" {
|
||||
module "lambda_sap_prediction_ecr" {
|
||||
name = "lambda-sap-prediction-${var.environment}"
|
||||
source = "./modules/ecr"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue