Is there any way to have an application load balancer in one vpc and cluster in another vpc. Now using vpc peering communicate with them
# Create AWS VPC resource “aws_vpc” “uptime_cluster_vpc” { cidr_block = “172.240.0.0/16” } # Create a new VPC for the ALB resource “aws_vpc” “alb_vpc” { cidr_block = “10.0.0.0/16” # Adjust CIDR block as needed tags = { Name = “ALB VPC” } } # Create Internet Gateway resource “aws_internet_gateway” “uptime_igw” { vpc_id = aws_vpc.uptime_cluster_vpc.id } # […]