Skip to content

Commit

Permalink
fix: vector subnet id reference (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
slesaad authored Aug 19, 2024
1 parent acf70d4 commit 365fa06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ resource "local_file" "mwaa_variables" {
stac_ingestor_api_url = var.stac_ingestor_api_url
stac_url = var.stac_url
vector_secret_name = var.vector_secret_name
vector_subnet_1 = length(data.aws_subnets.private.ids) > 0 ? data.aws_subnets.private.ids[0] : ""
vector_subnet_2 = length(data.aws_subnets.private.ids) > 0 ? data.aws_subnets.private.ids[1] : ""
vector_subnet_1 = length(data.aws_subnets.subnet_ids.ids) > 0 ? data.aws_subnets.subnet_ids.ids[0] : ""
vector_subnet_2 = length(data.aws_subnets.subnet_ids.ids) > 0 ? data.aws_subnets.subnet_ids.ids[1] : ""
vector_security_group = length(aws_security_group.vector_sg) > 0 ? aws_security_group.vector_sg[0].id : ""
vector_vpc = var.vector_vpc
})
Expand Down

0 comments on commit 365fa06

Please sign in to comment.