You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add regional subnets support
add Terraform and Provider minimum versions (> 0.12)
change Block Volume default attachment type from iSCSI to paravirtualized
remove boot volume custom default value in the module
Documentation enhancement:
Requirements, Providers, Inputs and Outputs tables in README are now autogenerated
update README sample code for Terraform 0.12 syntax
add description and type to module inputs
Fix issue: #41
All notable changes to this project will be documented in this file.
4
+
5
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and the versioning follows the [Semantic Versioning 2.0.0](https://semver.org/) specification.
6
+
7
+
Given a version number MAJOR.MINOR.PATCH:
8
+
9
+
- MAJOR version when making incompatible API changes,
10
+
- MINOR version when adding functionality in a backwards compatible manner,
11
+
- PATCH version when making backwards compatible bug fixes.
12
+
13
+
## [UNRELEASED]
14
+
15
+
## 2.0.4 - 2021-02-13
16
+
17
+
### Changed
18
+
19
+
- Terraform block now defines minimum terraform version and required providers. Block Moved to main.tf
20
+
- block volumes attachment type is now paravirtualized by default
21
+
- boot volume size default value is now passed by the service
22
+
- README content is automatically generated for the following sections: Requirements, Providers, Inputs, Outputs
23
+
24
+
### Fixed
25
+
26
+
Issue #41 - When regional subnets are used, the instance fails to detect the availability domain
27
+
28
+
- Instance Domain selection do not rely on vnic AD anymore: use Data Source + a list local
Copy file name to clipboardExpand all lines: LICENSE.txt
+3-3
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Apache License
27
27
28
28
Version 2.0, January 2004
29
29
30
-
http://www.apache.org/licenses/
30
+
http://www.apache.org/licenses/
31
31
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
32
32
1. Definitions.
33
33
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
@@ -46,9 +46,9 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
46
46
You must give any other recipients of the Work or Derivative Works a copy of this License; and
47
47
You must cause any modified files to carry prominent notices stating that You changed the files; and
48
48
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
49
-
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
49
+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
50
50
51
-
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
51
+
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
52
52
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
53
53
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
54
54
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
0 commit comments