I am trying to update very old Terraform code removing the Template provider which has been deprecated.
I have completed pretty much all of the upgrade but am really struggling updating this nested template file bit of code.
data "template_file" "vpn_routes" {
count = length(data.template_file.all_vpc_cidr_blocks.*.rendered)
template = "${cidrhost(
element(
data.template_file.all_vpc_cidr_blocks.*.rendered,
count.index,
),
0,
)} ${cidrnetmask(
element(
data.template_file.all_vpc_cidr_blocks.*.rendered,
count.index,
),
)}"
}
data "template_file" "all_vpc_cidr_blocks" {
count = length(
data.terraform_remote_state.other_vpcs.*.outputs.vpc_cidr_block,
) + 1
template = element(
concat(
data.terraform_remote_state.other_vpcs.*.outputs.vpc_cidr_block,
[data.terraform_remote_state.mgmt_vpc.outputs.vpc_cidr_block],
),
count.index,
)
}
This output is then posted into the userdata
user_data = templatefile(
"${path.module}/user-data/user-data.sh",
{
...
vpn_routes = join(
" ",
formatlist(
"--vpn-route \"%s\" ",
concat(
data.template_file.vpn_routes.*.rendered,
var.additional_vpn_routes,
),
),
Is there a guide anywhere, or some documentation people could suggest to help me out?