cisco-open / terraform-provider-meraki

A Terraform Provider for Cisco Meraki
Mozilla Public License 2.0
16 stars 7 forks source link

meraki_networks_appliance_vlans - fixed_ip_assignments #47

Open samspade21 opened 4 months ago

samspade21 commented 4 months ago

Is your feature request related to a problem? Please describe. The API supports setting fixedIpAssignments. This is not available within the meraki_networks_appliance_vlans resource.

Describe the solution you'd like Add a new optional array attribute that takes the mac address, IP, and name.

Example:

 ...
  fixed_ip_assignments = {
    "01:23:45:67:89:ab" = {
      ip_address = "172.28.9.3"
      name       = "DeviceTestOne"
    }
    "98:76:54:32:10:fe" = {
      ip_address = "172.28.9.4"
      name       = "DeviceTestTwo"
    }
  }
...

Describe alternatives you've considered NA

Additional context NA

obrigg commented 4 months ago

Hi @samspade21, The fixed_ip_assignments attribute was recently added to the OpenAPI spec. It will be reflected in our Terraform Provider the next time we update it.