mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-29 01:22:29 +00:00
8 lines
212 B
HCL
8 lines
212 B
HCL
|
|
resource "digitalocean_vpc" "main" {
|
|
for_each = { for idx, name in var.regions : name => idx }
|
|
name = "main-${each.key}"
|
|
region = each.key
|
|
ip_range = cidrsubnet(var.vpc_main_cidr, 8, each.value)
|
|
}
|