-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 Issue: oracle-terraform-modules#41
- Loading branch information
Showing
9 changed files
with
311 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
.terraform | ||
terraform.tfstate | ||
*.tfstate* | ||
*.lock | ||
terraform.tfvars | ||
*.auto.tfvars | ||
.DS_Store | ||
.idea | ||
.idea | ||
.vscode | ||
|
||
tests | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,71 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
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. | ||
|
||
Given a version number MAJOR.MINOR.PATCH: | ||
|
||
- MAJOR version when making incompatible API changes, | ||
- MINOR version when adding functionality in a backwards compatible manner, | ||
- PATCH version when making backwards compatible bug fixes. | ||
|
||
## [UNRELEASED] | ||
|
||
### Changed | ||
|
||
- Terraform block now defines minimum terraform version and required providers. Block Moved to main.tf | ||
- block volumes attachment type is now paravirtualized by default | ||
- boot volume size default value is now passed by the service | ||
- README content is automatically generated for the following sections: Requirements, Providers, Inputs, Outputs | ||
|
||
### Fixed | ||
|
||
Issue #41 - When regional subnets are used, the instance fails to detect the availability domain | ||
|
||
- Instance Domain selection do not rely on vnic AD anymore: use Data Source + a list local | ||
- add var.ad_number, data.oci_identity_availability_domains.ad, local.ADs | ||
|
||
Documentation enhancement: | ||
|
||
- CHANGELOG format | ||
- Sample code in the main README is now compliant with Terraform 0.12 syntax | ||
- Missing description, type or default value for variables module inputs | ||
|
||
## 2.0.3 - 2021-01-31 | ||
|
||
### Changed | ||
|
||
* Upgrade to HCL2, for compatibility with Terraform 0.12 or higher | ||
* Cleanup copyright notice statements in source files | ||
- Upgrade to HCL2, for compatibility with Terraform 0.12 or higher | ||
- Cleanup copyright notice statements in source files | ||
|
||
## 2.0.2 - 2021-01-22 | ||
|
||
### Added | ||
|
||
* CONTRIBUTING.md - contributor's guide | ||
- CONTRIBUTING.md - contributor's guide | ||
|
||
### Changed | ||
|
||
* Add link to CONTRIBUTING.md in README.md | ||
* Bump copyright year to 2021 in README.md | ||
|
||
- Add link to CONTRIBUTING.md in README.md | ||
- Bump copyright year to 2021 in README.md | ||
|
||
## 2.0.1 - 2019-05-08 | ||
|
||
### Changed | ||
|
||
* v0.12 preparation: Fix metadata usage to be canonical | ||
|
||
- v0.12 preparation: Fix metadata usage to be canonical | ||
|
||
## 2.0.0 - 2018-12-04 | ||
|
||
### Changed | ||
|
||
- Updated Hostname label for multiple compute instances | ||
- Updated Volume display name | ||
- Changes variable assign_public_ip default from true to false | ||
- Changes variable assign_public_ip default from true to false | ||
|
||
### Added | ||
|
||
* Support for multiple subnets | ||
* Support for paravirtualized attachments | ||
* Support for private IP list | ||
- Support for multiple subnets | ||
- Support for paravirtualized attachments | ||
- Support for private IP list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.