Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

Commit

Permalink
Sync bitbucket and GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
carchi8py committed Apr 22, 2021
1 parent 3ae7a59 commit 16e33bd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ansible_collections/netapp/cloudmanager/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ Minor Changes
- na_cloudmanager_cvo_azure - Return newly created AZURE working_environment_id.
- na_cloudmanager_cvo_gcp - Return newly created GCP working_environment_id.

Bugfixes
--------

- na_cloudmanager_cvo_aws - Fix incorrect placement of platformSerialNumber in the resulting json structure

v21.4.0
=======

Expand Down
3 changes: 3 additions & 0 deletions ansible_collections/netapp/cloudmanager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ https://github.com/ansible-collections/netapp/wiki
- na_cloudmanager_cvo_azure: Return newly created AZURE working_environment_id
- na_cloudmanager_cvo_gcp: Return newly created GCP working_environment_id

## Bug Fixes
- na_cloudmanager_cvo_aws: Fix incorrect placement of platformSerialNumber in the resulting json structure

## 21.4.0

### Module documentation changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ releases:
release_date: '2021-04-07'
21.5.0:
changes:
bugfixes:
- na_cloudmanager_cvo_aws - Fix incorrect placement of platformSerialNumber
in the resulting json structure
minor_changes:
- na_cloudmanager_connector_aws - Return newly created Azure client ID in cloud
manager, instance ID and account ID. New option ``proxy_certificates``.
Expand All @@ -48,4 +51,5 @@ releases:
fragments:
- DEVOPS-3803.yaml
- DEVOPS-3844.yaml
- DEVOPS-3922.yaml
release_date: '2021-04-21'
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- na_cloudmanager_cvo_aws - Fix incorrect placement of platformSerialNumber in the resulting json structure
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def create_cvo_aws(self):
"tierLevel": self.parameters['tier_level']})

if self.parameters.get('platform_serial_number') is not None:
json.update({"platformSerialNumber": self.parameters['platform_serial_number']})
json['vsaMetadata'].update({"platformSerialNumber": self.parameters['platform_serial_number']})

if self.parameters.get('writing_speed_state') is not None:
json.update({"writingSpeedState": self.parameters['writing_speed_state']})
Expand Down

0 comments on commit 16e33bd

Please sign in to comment.