Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
5f8ad6b
initial commit
Apr 18, 2025
6175b85
inital commit
Apr 21, 2025
8e76aef
Merge branch 'main' into issue-12003
aatreyee2506 Apr 21, 2025
d9e8d04
Merge branch 'main' into issue-12003
aatreyee2506 Apr 27, 2025
83cc13b
Merge branch 'main' into issue-12003
aatreyee2506 Apr 28, 2025
f1e4c61
Merge branch 'main' into issue-12003
aatreyee2506 May 8, 2025
2007c09
Merge branch 'main' into issue-12003
aatreyee2506 May 12, 2025
8416d6b
fixes
May 12, 2025
0104363
Merge branch 'main' into issue-12003
aatreyee2506 May 14, 2025
2a807c7
Merge branch 'main' into issue-12003
Ak-sky May 29, 2025
b3fd5c7
added resource_block to create secrets
Jun 4, 2025
ffbda00
Merge remote-tracking branch 'origin/issue-12003' into issue-12003
aatreyee257 Jun 4, 2025
6916606
added support for existin secret
aatreyee257 Jun 4, 2025
912fddd
fixed logic
aatreyee257 Jun 4, 2025
a8bcf52
changes
aatreyee257 Jun 5, 2025
ce29449
changes
aatreyee257 Jun 5, 2025
860e5ee
fixed error
aatreyee257 Jun 10, 2025
f677083
Merge branch 'main' into issue-12003
aatreyee257 Jun 12, 2025
461cce1
added condition and updated provider version
aatreyee257 Jun 12, 2025
ad0bcca
provider version update
aatreyee257 Jun 16, 2025
9f09893
changes
aatreyee257 Jun 23, 2025
601e8a0
Merge branch 'main' into issue-12003
aatreyee257 Jun 24, 2025
2cb1fe4
feat: Full DA refactor (#428)
whoffler Jun 27, 2025
7e6ffab
changes
aatreyee257 Jul 2, 2025
ebe833f
Merge branch 'main' of https://github.com/terraform-ibm-modules/terra…
aatreyee257 Jul 2, 2025
ceeefa5
Merge branch 'main' into issue-12003
shemau Jul 4, 2025
2581334
fix: update secrets baseline
shemau Jul 4, 2025
e7b35d4
Merge branch 'main' into issue-12003
aatreyee257 Jul 6, 2025
3ae026b
Merge branch 'main' into issue-12003
aatreyee257 Jul 6, 2025
74b6b84
Merge branch 'main' into issue-12003
aatreyee257 Jul 7, 2025
c262b0d
Merge branch 'main' into issue-12003
aatreyee257 Jul 14, 2025
8dbcf05
resolved comments
aatreyee257 Jul 14, 2025
455fe44
fixed test failure
aatreyee257 Jul 15, 2025
02331e4
Merge branch 'main' into issue-12003
aatreyee257 Jul 22, 2025
3e9c24f
Merge branch 'main' of https://github.com/terraform-ibm-modules/terra…
aatreyee257 Jul 23, 2025
ed61e9d
fixes
aatreyee257 Jul 23, 2025
9055dbd
Merge branch 'main' into issue-12003
aatreyee257 Jul 28, 2025
13055b3
Merge branch 'main' into issue-12003
aatreyee257 Jul 30, 2025
c04820a
fix error for secrets
Ak-sky Jul 31, 2025
3461c68
fix error for secrets
Ak-sky Jul 31, 2025
fb98339
baseline
Ak-sky Jul 31, 2025
ff20c5d
baseline
Ak-sky Jul 31, 2025
5a5f705
updated logic for image secret
Ak-sky Jul 31, 2025
e23c23e
Merge branch 'main' into issue-12003
Ak-sky Aug 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
3 changes: 3 additions & 0 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,9 @@
{
"key": "kibana_image_port"
},
{
"key": "image_secret"
},
{
"key": "kibana_visibility",
"options": [
Expand Down
1 change: 1 addition & 0 deletions solutions/standard/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ module "code_engine_kibana" {
(local.code_engine_app_name) = {
image_reference = var.kibana_image_digest != null ? "${var.kibana_registry_namespace_image}@${var.kibana_image_digest}" : "${var.kibana_registry_namespace_image}:${local.kibana_version}"
image_port = var.kibana_image_port
image_secret = var.image_secret
run_env_variables = [{
type = "literal"
name = "ELASTICSEARCH_HOSTS"
Expand Down
6 changes: 6 additions & 0 deletions solutions/standard/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,12 @@ variable "kibana_image_port" {
default = 5601
}

variable "image_secret" {
description = "The name of the image registry access secret."
type = string
default = null
}

variable "kibana_visibility" {
description = "Specify the visibility of Kibana application in order to define which endpoint is available for receiving the requests. Valid values are 'local_public', 'local_private' and 'local' and it is only applicable if `enable_kibana_dashboard` is true. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-icd-elasticsearch/blob/main/solutions/standard/DA-types.md#options-for-kibana_visibility)."
type = string
Expand Down