Skip to content

Commit

Permalink
changing to module
Browse files Browse the repository at this point in the history
  • Loading branch information
HarryBurnhamCredera committed Nov 8, 2024
1 parent 95912e1 commit 38ca5a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module "sagemaker" {
algorithm_choice = var.algorithm_choice
tuning_metric = var.tuning_metric
config_bucket_id = module.s3.config_bucket_id
data_location_s3 = var.data_location_s3
data_bucket_id = var.data_bucket_id
endpoint_name = var.endpoint_name
model_name = var.model_name
sagemaker_instance_type = var.sagemaker_instance_type
Expand Down Expand Up @@ -59,6 +59,6 @@ module "ecr" {

module "data" {
source = "./modules/data"
data_bucket_id = var.data_bucket_id
data_bucket_id = module.s3.data_bucket_id
tags = var.tags
}

0 comments on commit 38ca5a2

Please sign in to comment.