Is your feature request related to a problem? Please describe.
Multiple pages in the documentation use page=1 in the example. Pages start at 0, so the example does not work and the provider panics
data "nutanix_images_v2" "filtered-images"{
filter="startswith(name,'image_name')"
page=1
limit=10
}
...
Describe the solution you'd like
Update the documentation to page=0
data "nutanix_images_v2" "filtered-images"{
filter="startswith(name,'image_name')"
page=0
limit=10
}
Describe alternatives you've considered
Additional context
Is your feature request related to a problem? Please describe.
Multiple pages in the documentation use page=1 in the example. Pages start at 0, so the example does not work and the provider panics
data "nutanix_images_v2" "filtered-images"{
filter="startswith(name,'image_name')"
page=1
limit=10
}
...
Describe the solution you'd like
Update the documentation to page=0
data "nutanix_images_v2" "filtered-images"{
filter="startswith(name,'image_name')"
page=0
limit=10
}
Describe alternatives you've considered
Additional context