Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6b2f184
fix: updated Kibana app endpoint to private
Ak-sky Nov 20, 2024
00f5f47
Merge branch 'main' into kibana_enpoint
Ak-sky Nov 20, 2024
b6b0b71
Merge branch 'main' into kibana_enpoint
Ak-sky Nov 20, 2024
3151fe7
Merge branch 'main' into kibana_enpoint
Ak-sky Nov 24, 2024
d6558c2
Merge branch 'main' into kibana_enpoint
Ak-sky Nov 26, 2024
92ba79a
update endpoint and port variable
Ak-sky Nov 27, 2024
7baebc1
Merge remote-tracking branch 'origin/main' into kibana_enpoint
Ak-sky Dec 5, 2024
9ea08f7
addressed review comments
Ak-sky Dec 5, 2024
f3297b6
addressed review comments
Ak-sky Dec 5, 2024
139845e
addressed review comments
Ak-sky Dec 5, 2024
29facca
addressed review comments
Ak-sky Dec 5, 2024
a0ecf7e
updated readme to set VPN
Ak-sky Dec 6, 2024
6374543
updated readme to set VPN
Ak-sky Dec 6, 2024
7c415a8
updated DA readme docs
Ak-sky Dec 7, 2024
c53fe66
Removed Kibana from the ref. architecture
Ak-sky Dec 7, 2024
d25c07a
Merge branch 'main' into kibana_enpoint
Ak-sky Dec 9, 2024
7f21221
Merge remote-tracking branch 'origin/main' into kibana_enpoint
Ak-sky Dec 13, 2024
aeb404d
fixes
Ak-sky Dec 13, 2024
b868cd3
Merge branch 'main' into kibana_enpoint
Ak-sky Dec 18, 2024
7d9b9d8
Merge branch 'main' into kibana_enpoint
Ak-sky Dec 19, 2024
b6b720d
minor fixes
Ak-sky Dec 20, 2024
ae17ad2
Merge branch 'main' into kibana_enpoint
Ak-sky Jan 6, 2025
47bf091
Merge branch 'main' into kibana_enpoint
Ak-sky Jan 8, 2025
e4d7307
Merge branch 'main' into kibana_enpoint
Ak-sky Jan 14, 2025
268ba1a
Merge remote-tracking branch 'origin/main' into kibana_enpoint
Ak-sky Jan 24, 2025
eaa0a0d
addressed review comments
Ak-sky Jan 24, 2025
444ed93
fixed indentation
Ak-sky Jan 30, 2025
6c40223
Merge branch 'main' into kibana_enpoint
Ak-sky Feb 1, 2025
4e01a9f
addressed review comments
Ak-sky Feb 3, 2025
dd1c0b8
Merge branch 'main' into kibana_enpoint
Ak-sky Feb 4, 2025
ec81eb4
Update solutions/standard/variables.tf
Ak-sky Feb 4, 2025
728aa89
Merge branch 'main' into kibana_enpoint
ocofaigh Feb 4, 2025
c15c093
pc fixes
Ak-sky Feb 4, 2025
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
7 changes: 4 additions & 3 deletions solutions/standard/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ module "code_engine_kibana" {
apps = {
(local.code_engine_app_name) = {
image_reference = "docker.elastic.co/kibana/kibana:${local.es_full_version}"
image_port = 5601
image_port = var.image_port
run_env_variables = [{
type = "literal"
name = "ELASTICSEARCH_HOSTS"
Expand Down Expand Up @@ -349,8 +349,9 @@ module "code_engine_kibana" {
value = "none"
}
]
scale_min_instances = 1
scale_max_instances = 3
scale_min_instances = 1
scale_max_instances = 3
managed_domain_mappings = var.managed_domain_mappings
}
}
}
12 changes: 12 additions & 0 deletions solutions/standard/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -354,3 +354,15 @@ variable "elasticsearch_full_version" {
type = string
default = null
}

variable "image_port" {
description = "The port which is used to connect to the port that is exposed by the container image."
type = number
default = 5601
}

variable "managed_domain_mappings" {
description = "Define which of the system managed domain mappings (Kibana endpint URL) will be setup for the application. Valid values are 'local_public', 'local_private' and 'local'."
type = string
default = "local_private"
}