You must be logged in to view saved presets
This template retrieves an IPAM pool using filters and creates a VPC with a CIDR block derived from the retrieved IPAM pool.
data "aws_vpc_ipam_pool" "test" {
filter {
name = "description"
values = ["*test*"]
}
filter {
name = "address-family"
values = ["ipv4"]
}
}
resource "aws_vpc" "test" {
ipv4_ipam_pool_id = data.aws_vpc_ipam_pool.test.id
ipv4_netmask_length = 28
}