Breaking changes
The deprecated service_endpoints
input for subnets has been removed.
We have had to separate the implementation of subnets using IPAM. If you have deployed a subnet with IPAM since that change went out, you'll need to add a moved
block to your code into order to migrate the state. E.g.
moved {
from = module.vnet.module.subnet["subnet01"].azapi_resource.subnet
to = module.vnet.module.subnet["subnet01"].azapi_resource.subnet_ipam[0]
}
If you are not using IPAM your state will automatically be migrated.
What's Changed
- fix: null ignore issues by @jaredfholgate in #41
Full Changelog: v0.14.1...v0.15.0