https://github.com/terraform-ibm-modules/terraform-ibm-toolkit-log-analysis-bind
Module to bind an existing IBM Log Analysis instance to an existing kubernetes cluster
https://github.com/terraform-ibm-modules/terraform-ibm-toolkit-log-analysis-bind
ibmcloud kubernetes log-analysis logdna openshift terraform
Last synced: about 1 month ago
JSON representation
Module to bind an existing IBM Log Analysis instance to an existing kubernetes cluster
- Host: GitHub
- URL: https://github.com/terraform-ibm-modules/terraform-ibm-toolkit-log-analysis-bind
- Owner: terraform-ibm-modules
- License: apache-2.0
- Created: 2021-04-01T07:16:10.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-07T20:41:12.000Z (6 months ago)
- Last Synced: 2025-04-08T20:02:25.823Z (about 1 month ago)
- Topics: ibmcloud, kubernetes, log-analysis, logdna, openshift, terraform
- Language: HCL
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 6
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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 - v0.13
### Terraform providers
- IBM Cloud provider >= 1.9.0
- Helm provider >= 1.1.1 (provided by Terraform)## Module dependencies
This module makes use of the output from other modules:
- Cluster - github.com/ibm-garage-cloud/terraform-ibm-container-platform.git
- Namespace - github.com/ibm-garage-clout/terraform-cluster-namespace.git## Example usage
[Refer test cases for more details](test/stages/stage-logdna-bind.tf)
```hcl-terraform
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
}```