Amazon web services – How to pass subnet ids to aws_network_interface which has count attribute
I am getting the 3 existing subnet ids using data resource as below data "aws_subnet" "AZA" { vpc_id = var.vpc_id filter { name = "tag:Name" values = ["my-subnet-1a"] } } Similarly I'm getting AZB and AZC as well. Now I…