module "private_zone" {
source = "../../../modules/global/private-hosted-zone"
aws_region = var.aws_region
short_region = var.short_region
environment_name = var.environment_name
environment_type = var.environment_type
subdomain = "${var.environment_name}.
int.qless.com"
vpc_id = data.terraform_remote_state.framework.outputs.vpc_id
secondary_vpc_list = [split(",", data.external.associate_vpc.result.vpcs)]
secondary_vpc_region_list = [split(",", data.external.associate_vpc.result.regions)]
}
Ругается на эти строки
```Error: Invalid value for module argument
on
main.tf line 49, in module "private_zone":
49: secondary_vpc_region_list = [split(",", data.external.associate_vpc.result.regions)]
The given value is not suitable for child module variable
"secondary_vpc_region_list" defined at
../../../modules/global/private-hosted-zone/
private-hosted-zone.tf:30,1-37:
element 0: string required.
```Я не пойму куда это он обращается data.external...