-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(index): extend opensearch_index resource capabilities (#39)
* Extend elasticsearch_index resource capabilities + move var.indices to map(object({})) instead of map(any) * change required version of terraform to 1.3 because of optional variables inside object type * add missing attribute search_slowlog_threshold_fetch_info in var. indices * fix: prevent replacing existing indices --------- Co-authored-by: Steve Teuber <steve.teuber@idealo.de>
- Loading branch information
1 parent
0388438
commit 43c7233
Showing
4 changed files
with
155 additions
and
14 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
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
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
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,5 +1,5 @@ | ||
terraform { | ||
required_version = ">= 1.0.0" | ||
required_version = ">= 1.3.0" | ||
|
||
required_providers { | ||
aws = { | ||
|