diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index 97c7d72..943e362 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -36,9 +36,9 @@ jobs: run: terraform init working-directory: terraform - - name: Terraform Refresh - run: terraform refresh - working-directory: terraform + # - name: Terraform Refresh + # run: terraform refresh + # working-directory: terraform - name: Terraform Plan run: terraform plan -out=tfplan diff --git a/terraform/outputs.tf b/terraform/outputs.tf index f08088b..4540d8f 100644 --- a/terraform/outputs.tf +++ b/terraform/outputs.tf @@ -17,4 +17,12 @@ output "vectorstore_nlb_dns_name" { output "aws_lb_target_group_arn" { value = aws_lb_target_group.ecs_target.arn description = "ARN of the target group for the ALB." +} + +output "nlb_sg_id" { + value = aws_security_group.nlb_sg.id +} + +output "milvus_sg_id" { + value = aws_security_group.milvus_sg_api.id } \ No newline at end of file