Skip to content

Commit

Permalink
removing more unnecessary code
Browse files Browse the repository at this point in the history
  • Loading branch information
HarryBurnhamCredera committed Nov 8, 2024
1 parent f700d5c commit 53c51d0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion modules/s3/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ locals {
tolist(fileset(local.file_path, "*.py")),
tolist(fileset(local.file_path, "requirements.txt"))
)
bucket_names = tolist(["${var.model_name}-model", "${var.model_name}-config-bucket", "${var.model_name}-data-bucket"])
bucket_names = tolist(["${var.model_name}-model", "${var.model_name}-config-bucket"])
}

resource "aws_kms_key" "s3_kms_key" {
Expand Down
4 changes: 0 additions & 4 deletions modules/s3/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,3 @@ output "config_bucket_id" {
output "s3_bucket_id" {
value = aws_s3_bucket.model_buckets[0].id
}

output "data_bucket_id" {
value = aws_s3_bucket.model_buckets[2].id
}

0 comments on commit 53c51d0

Please sign in to comment.