Skip to content

Commit

Permalink
Change moved blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
devsjc committed Nov 10, 2023
1 parent 037e7e3 commit 7796f93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform/modules/networking/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ resource "aws_subnet" "public_subnets" {
}

moved {
from = aws_subnet.public_subnet
to = aws_subnet.public_subnets
from = aws_subnet.public_subnet[*]
to = aws_subnet.public_subnets[*]
}

/* Private subnet */
Expand All @@ -77,8 +77,8 @@ resource "aws_subnet" "private_subnets" {
}

moved {
from = aws_subnet.private_subnet
to = aws_subnet.private_subnets
from = aws_subnet.private_subnet[*]
to = aws_subnet.private_subnets[*]
}

resource "aws_db_subnet_group" "private_subnet_group" {
Expand Down

0 comments on commit 7796f93

Please sign in to comment.