-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
36 upgrade to 0.12 syntax #43
36 upgrade to 0.12 syntax #43
Conversation
Signed-off-by: Alexey Dolganov <[email protected]>
Add Copyright 2021 Signed-off-by: Alexey Dolganov <[email protected]>
Signed-off-by: Alexey Dolganov <[email protected]>
Signed-off-by: Alexey Dolganov <[email protected]>
Signed-off-by: Alexey Dolganov <[email protected]>
@@ -1,39 +1,60 @@ | |||
// Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. | |||
// Copyright (c) 2018, 2021 Oracle and/or its affiliates. All rights reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"All rights reserved" is not needed anymore. Copyright notice should be as below:
// Copyright (c) 2018, 2021 Oracle and/or its affiliates.
Lets batch copyright notice cleaning with next update.
bump version to 2.0.3 Signed-off-by: Alexey Dolganov <[email protected]>
Cleaned up copyright statements, see last commit |
@@ -0,0 +1,4 @@ | |||
|
|||
terraform { | |||
required_version = ">= 0.12" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
required_version = ">= 0.12" | |
required_version = ">= 0.12, < 0.13" |
terraform config should prevent update greater than 0.12 as this module is not tested/known working with versions greater that 0.12
this suggestion do not apply to version constraints inside module: their we want to specify only minimum version.
Resolves issues #34 and #36
plus minor readme file updates.