-
-
Notifications
You must be signed in to change notification settings - Fork 233
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
feat: support multi_az_with_standby_enabled
for opensearch
#196
base: main
Are you sure you want to change the base?
Conversation
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.
One request to confirm before we move this forward 👍
dedicated_master_enabled = var.dedicated_master_enabled | ||
dedicated_master_count = var.dedicated_master_count | ||
dedicated_master_type = var.dedicated_master_type | ||
multi_az_with_standby_enabled = var.multi_az_with_standby_enabled |
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.
What version of the AWS provider was multi_az_with_standby_enabled
added in? Does our current pin of the AWS provider in versions.tf
require that version or above? Please look into this, update if needed, and then rerun the README generation with make init && make readme
. Thanks!
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.
Thanks for the callout! It does need a minimum bump, the variable was introduced in https://github.com/hashicorp/terraform-provider-aws/blob/main/CHANGELOG.md#5150-august-31-2023. I've updated that value and run README generation. Note that that make readme
fixes some things I missed when I did it manually, but also introduces some minor, seemingly unrelated changes (e.g., extra /
).
2dc476e
to
0232f59
Compare
Note that this bumps the minimum `hashicorp/aws` provider version to 5.15.0, where this parameter was introduced [[1]]. The README diff was generated with `make init` and `make readme`, and introduces some minor unrelated changes. [1]: https://github.com/hashicorp/terraform-provider-aws/blob/main/CHANGELOG.md#5150-august-31-2023 Closes: cloudposse#195
/terratest |
I see some test failures, but looking at the logs, they don't look directly related to my change. If I'm responsible for getting these to passing, could anyone provide some guidance? |
feat: support
multi_az_with_standby_enabled
for opensearchNote that this bumps the minimum
hashicorp/aws
provider version to5.15.0, where this parameter was introduced [1].
The README diff was generated with
make init
andmake readme
, andintroduces some minor unrelated changes.
Closes: #195
what
This PR simply exposes a new variable (
multi_az_with_standby_enabled
) for OpenSearch clusters.why
This is the recommended setting by AWS, so it makes sense to be able to do this via terraform.
references
Closes: #195