Skip to content

Commit

Permalink
update prom internal url input value
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 18, 2025
1 parent 29bdf77 commit 6e98a22
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependency "eks_postgresql" {
config_path = "../eks-postgresql"
mock_outputs_allowed_terraform_commands = ["init", "plan", "validate", "destroy"]
mock_outputs = {
internal_endpoint {
internal_endpoint = {
url = "mock-internal-endpoint-url"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ dependencies {
paths = [
"../eks",
"../eks-config",
"../eks-dns"
"../eks-dns",
"../eks-prometheus",
]
}

Expand Down Expand Up @@ -58,16 +59,18 @@ inputs = {
rwo_storage_class = dependency.eks_config.outputs.rwo_storage_class

# PostgreSQL Configuration
service_name = "postgresql"
namespace = include.root.inputs.namespaces["postgresql"]
os_shell_tag = include.root.inputs.os_shell_tag
pgpool_tag = include.root.inputs.pgpool_tag
postgres_exporter_tag = include.root.inputs.postgres_exporter_tag
postgresql_tag = include.root.inputs.postgresql_tag
postgresql_repmgr_tag = include.root.inputs.postgresql_repmgr_tag
pgpool_tag = include.root.inputs.pgpool_tag
namespace = include.root.inputs.namespaces["postgresql"]
postgresql_tag = include.root.inputs.postgresql_tag
service_name = "postgresql"
telemetry_namespace = include.root.inputs.telemetry_namespace

# Database Consumer Configuration
postgresql_database = include.root.inputs.postgresql_database
postgresql_username = include.root.inputs.postgresql_username
postgresql_password = include.root.inputs.postgresql_password

}

0 comments on commit 6e98a22

Please sign in to comment.