Skip to content
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

adding elasticsearch to the main.tf optional examples #81

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Optional release notice.
- [Verb] Change description ([#<PR-number>](https://github.com/quiltdata/iac/pull/<PR-number>))
-->

## [Unreleased]

- Chanded documentation to include elasticsearch instance sizing in the `Quilt` tf module. ([#79](https://github.com/quiltdata/iac/pull/79))

Comment on lines +11 to +14
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO it doesn't make sense to add changelog entry for docs only change

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, that makes sense to me, I just wanted to conform to the process. I'll drop it and merge.

## [1.1.0] - 2024-12-20

- [Changed] Increase default CloudFormation stack delete timeout from 1h to 1h30m ([#78](https://github.com/quiltdata/iac/pull/78))
Expand Down
8 changes: 8 additions & 0 deletions examples/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@ module "quilt" {
// user_security_group = ""
// user_subnets = ["", ""]

// Optional: set size of ElasticSearch Instance.
// See the full list of sizing options here: https://github.com/quiltdata/iac/blob/main/README.md#rightsize-your-search-domain
// search_dedicated_master_enabled = false
// search_zone_awareness_enabled = false
// search_instance_count = 1
// search_instance_type = "m5.large.elasticsearch"
// search_volume_size = 512

parameters = {
AdminEmail = ""
CertificateArnELB = ""
Expand Down