Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiFleKs committed Oct 10, 2022
2 parents e79ca57 + 4319014 commit 23c72f1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion helm-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ dependencies:
version: v3.24.1
repository: https://docs.projectcalico.org/charts
- name: traefik
version: 12.0.4
version: 12.0.7
repository: https://helm.traefik.io/traefik
- name: memcached
version: 6.2.6
Expand Down
3 changes: 2 additions & 1 deletion modules/aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,8 @@ This module can uses [IRSA](https://aws.amazon.com/blogs/opensource/introducing-

| Name | Description |
|------|-------------|
| <a name="output_grafana_password"></a> [grafana\_password](#output\_grafana\_password) | n/a |
| <a name="output_kube-prometheus-stack"></a> [kube-prometheus-stack](#output\_kube-prometheus-stack) | n/a |
| <a name="output_kube-prometheus-stack_sensitive"></a> [kube-prometheus-stack\_sensitive](#output\_kube-prometheus-stack\_sensitive) | n/a |
| <a name="output_loki-stack-ca"></a> [loki-stack-ca](#output\_loki-stack-ca) | n/a |
| <a name="output_promtail-cert"></a> [promtail-cert](#output\_promtail-cert) | n/a |
| <a name="output_promtail-key"></a> [promtail-key](#output\_promtail-key) | n/a |
Expand Down
13 changes: 11 additions & 2 deletions modules/aws/kube-prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,16 @@ resource "kubernetes_network_policy" "kube-prometheus-stack_allow_control_plane"
}
}

output "grafana_password" {
value = element(concat(random_string.grafana_password.*.result, [""]), 0)
output "kube-prometheus-stack" {
value = {
iam_assumable_role_kube-prometheus-stack_grafana = module.iam_assumable_role_kube-prometheus-stack_grafana
iam_assumable_role_kube-prometheus-stack_thanos = module.iam_assumable_role_kube-prometheus-stack_thanos
}
}

output "kube-prometheus-stack_sensitive" {
value = {
grafana_password = element(concat(random_string.grafana_password.*.result, [""]), 0)
}
sensitive = true
}

0 comments on commit 23c72f1

Please sign in to comment.