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

feat:An ability to override Kibana image URL in DA #345

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion solutions/standard/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ module "code_engine_kibana" {

apps = {
(local.code_engine_app_name) = {
image_reference = "docker.elastic.co/kibana/kibana:${local.es_full_version}"
image_reference = var.kibana_image_reference != "" ? var.kibana_image_reference : "docker.elastic.co/kibana/kibana:${local.es_full_version}"
aatreyee2506 marked this conversation as resolved.
Show resolved Hide resolved
image_port = 5601
run_env_variables = [{
type = "literal"
Expand Down
6 changes: 6 additions & 0 deletions solutions/standard/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -354,3 +354,9 @@ variable "elasticsearch_full_version" {
type = string
default = null
}

aatreyee2506 marked this conversation as resolved.
Show resolved Hide resolved
variable "kibana_image_reference" {
description = "The docker image reference for Kibana.Please give your image input or leave blank for default."
aatreyee2506 marked this conversation as resolved.
Show resolved Hide resolved
type = string
default = ""
aatreyee2506 marked this conversation as resolved.
Show resolved Hide resolved
}