Skip to content

Commit

Permalink
Merge pull request #286 from NetApp/277-merge-114-to-200
Browse files Browse the repository at this point in the history
277 merge 114 to 200
  • Loading branch information
suhasbshekar committed Sep 10, 2024
2 parents ee3acac + 06b3d15 commit c529e74
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,16 @@ ENHANCEMENTS:
* **netapp-ontap_lun**: added `size_unit` option. ([#227](https://github.com/NetApp/terraform-provider-netapp-ontap/issues/227))
* **netapp-ontap_security_account**: Add support for import and update ([#243](https://github.com/NetApp/terraform-provider-netapp-ontap/issues/243))

## 1.1.3
## 1.1.4 (2024-09-05)

DOC FIXES:
* **netapp-ontap_storage_flexcache_resource**: Fixed Page display issue ([[#271](https://github.com/NetApp/terraform-provider-netapp-ontap/issues/271)])
* **netapp-ontap_networking_ip_interface_resource**: Include min version for metrics ([[#265](https://github.com/NetApp/terraform-provider-netapp-ontap/issues/265)])

BUG FIXES:
* **netapp-ontap_cluster_data_source: fix on nodes to show multiple elements ([#264](https://github.com/NetApp/terraform-provider-netapp-ontap/issues/264))

## 1.1.3 (2024-08-08)

BUG FIXES:
* **netapp-ontap_protocols_cifs_service_resource**: fixed on attribute checking ([#250](https://github.com/NetApp/terraform-provider-netapp-ontap/issues/250))
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/networking_ip_route_resource.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ resource "netapp-ontap_networking_ip_route" "networking_ip_route" {
### Optional

- `destination` (Attributes) destination IP address information (see [below for nested schema](#nestedatt--destination))
- `metric` (Number) Indicates a preference order between several routes to the same destination.
- `metric` (Number) Requires 9.11.1, indicates a preference order between several routes to the same destination.
- `svm_name` (String) IPInterface vserver name

### Read-Only
Expand Down
1 change: 1 addition & 0 deletions docs/resources/storage_flexcache_resource.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Flexcache resource
* Amazon FSx for NetApp ONTAP

## Example Usage
```terraform
resource "netapp-ontap_flexcache" "storage_flexcache" {
# required to know which system to interface with
cx_profile_name = "cluster1"
Expand Down
2 changes: 1 addition & 1 deletion internal/interfaces/networking_ip_route.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func GetListIPRoutes(errorHandler *utils.ErrorHandler, r restclient.RestClient,
}

var fields = []string{"destination", "gateway"}
if version.Generation == 9 && version.Major > 11 {
if version.Generation == 9 && version.Major > 10 {
fields = append(fields, "metric")
}
query.Fields(fields)
Expand Down

0 comments on commit c529e74

Please sign in to comment.