add redfish exporter [CI SKIP]

This commit is contained in:
viktorbarzin 2021-04-05 15:06:24 +01:00
parent cccc49378e
commit 12e46fad2a
No known key found for this signature in database
GPG key ID: 0EB088298288D958
6 changed files with 135 additions and 2 deletions

View file

@ -25,6 +25,8 @@ variable "webhook_handler_fb_app_secret" {}
variable "webhook_handler_git_user" {}
variable "webhook_handler_git_token" {}
variable "webhook_handler_ssh_key" {}
variable "idrac_username" {}
variable "idrac_password" {}
resource "null_resource" "core_services" {
# List all the core modules that must be provisioned first
@ -123,6 +125,8 @@ module "monitoring" {
source = "./monitoring"
tls_secret_name = var.tls_secret_name
alertmanager_account_password = var.alertmanager_account_password
idrac_username = var.idrac_username
idrac_password = var.idrac_password
depends_on = [null_resource.core_services]
}