Skip to content

Commit

Permalink
Update LDAP config
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Nov 6, 2024
1 parent 83dbf39 commit 135304f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data_services/opensearch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "aws_security_group_rule" "elasticsearch_ingress" {

resource "aws_opensearch_domain" "elasticsearch" {
domain_name = "${local.namespace}-index"
engine_version = "OpenSearch_2.13"
engine_version = "OpenSearch_2.15"
tags = local.tags

advanced_options = {
Expand Down
2 changes: 1 addition & 1 deletion data_services/secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ locals {
}
}

ldap = var.ldap_config
ldap = merge(var.ldap_config, { port = tonumber(var.ldap_config["port"]) })
}
}

Expand Down
2 changes: 1 addition & 1 deletion data_services/variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "postgres_version" {
type = string
default = "13.13"
default = "13.15"
}

variable "instance_class" {
Expand Down

0 comments on commit 135304f

Please sign in to comment.