Hi team, getting `If any subnet spec has explicit ...
# general
c
Hi team, getting
If any subnet spec has explicit cidrBlocks, all subnets must have explicit cidrBlocks.
when trying to run the following code. Any ideas?
Copy code
cidrBlock: '10.1.0.0/16',
numberOfAvailabilityZones: 2,
enableDnsHostnames: true,
subnetStrategy: 'Exact',
subnetSpecs: [
  {
    type: 'Public',
    cidrBlocks: ['10.1.0.0/19', '10.1.32.0/19'],
  },
  {
    type: 'Private',
    cidrBlocks: ['10.1.64.0/19', '10.1.96.0/19'],
  },
  {
    type: 'Unused',
    size: 32768,
  },
],