Skip to content

Commit

Permalink
Terraform EC2 instance with Milvus
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Elhaiek committed Mar 12, 2024
1 parent fe04b6c commit 1e56671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ resource "aws_instance" "milvus_instance" {
instance_type = var.instance_type
key_name = var.key_name
security_groups = [aws_security_group.milvus_sg.name]
user_data = file("${path.module}/create-milvus.sh")
user_data = file("${path.module}/../create-milvus.sh")

# "${file("create-milvus.sh")}"

Expand Down

0 comments on commit 1e56671

Please sign in to comment.