terraform-ibm-modules / terraform-ibm-toolkit-log-analysis-bind

Module to bind an existing IBM Log Analysis instance to an existing kubernetes cluster
Apache License 2.0
0 stars 3 forks source link
ibmcloud kubernetes log-analysis logdna openshift terraform

IBM Log Analysis bind module

Module to bind an existing IBM Log Analysis instance to a cluster.

Software dependencies

The module depends on the following software components:

Command-line tools

Terraform providers

Module dependencies

This module makes use of the output from other modules:

Example usage

Refer test cases for more details

module "log-bind" {
  source = "github.com/cloud-native-toolkit/terraform-ibm-log-analysis-bind.git"

  resource_group_name      = var.resource_group_name
  region                   = var.region
  ibmcloud_api_key         = var.ibmcloud_api_key
  cluster_id               = module.dev_cluster.id
  cluster_name             = module.dev_cluster.name
  logdna_id                = module.logdna.guid
  logdna_crn               = module.logdna.id
}