rmbolger / Posh-IBWAPI

PowerShell module for interacting with the Infoblox WAPI (REST API).
MIT License
54 stars 8 forks source link

typo in "The definitive list of REST examples" article of Wiki #46

Closed igorchernysh closed 5 years ago

igorchernysh commented 5 years ago

Hi, I believe there typo in:

create a template to change the IP address

$template = @{ipv4addrs=@(${ipv4addr='1.1.1.2'})}

, correct value will be:

$template = @{ipv4addrs=@(@{ipv4addr='1.1.1.2'})}

Thanks, Igor.

rmbolger commented 5 years ago

Nice catch! Thanks. Fixed.