https://github.com/terraform-ibm-modules/terraform-ibm-toolkit-activity-tracker
Terraform module to install LogDNA Activity Tracker into an IBM Cloud account
https://github.com/terraform-ibm-modules/terraform-ibm-toolkit-activity-tracker
Last synced: about 2 months ago
JSON representation
Terraform module to install LogDNA Activity Tracker into an IBM Cloud account
- Host: GitHub
- URL: https://github.com/terraform-ibm-modules/terraform-ibm-toolkit-activity-tracker
- Owner: terraform-ibm-modules
- License: apache-2.0
- Created: 2020-07-14T13:09:01.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-12-07T20:39:58.000Z (5 months ago)
- Last Synced: 2025-02-04T16:50:51.818Z (3 months ago)
- Language: HCL
- Size: 73.2 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Activity Tracker terraform module
Terraform module to provision Activity Tracker on IBM Cloud.
If an existing instance of the activity tracker service already exists within the user's account in the specified region, then creation will **NOT** fail, and the outputs of this module will be the values of the existing instnace, not of a newly created instance.
## Software dependencies
The module depends on the following software components:
### Command-line tools
- terraform - v13
### Terraform providers
- IBM Cloud provider >= 1.5.3
## Module dependencies
None
## Example usage
[Refer test cases for more details](test/stages/stage2-activity-tracker.tf)
```hcl-terraform
terraform {
required_providers {
ibm = {
source = "ibm-cloud/ibm"
}
}
required_version = ">= 0.13"
}provider "ibm" {
ibmcloud_api_key = var.ibmcloud_api_key
region = var.region
}module "dev_activity-tracker" {
source = "github.com/ibm-garage-cloud/terraform-ibm-activity-tracker"resource_group_name = var.resource_group_name
resource_location = var.region
tags = []
name_prefix = var.name_prefix
plan = "7-day"
}
```