generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
The module cloud-monitoring enables user to configure service_endpoints public or private.
module "cloud_monitoring" {
source = "terraform-ibm-modules/observability-instances/ibm//modules/cloud_monitoring"
# version = "latest" # Replace "latest" with a release version to lock into a specific release
resource_group_id = ibm_resource_group.group.id
instance_name = format("%s-%s", local.basename, "monitoring")
plan = var.sysdig_plan
service_endpoints = var.sysdig_service_endpoints
enable_platform_metrics = var.sysdig_enable_platform_metrics
region = var.region
tags = var.tags
manager_key_tags = var.tags
}
Should the module scc-workload-protection have the same type of input service_endpoints`.
module "scc_wp" {
source = "terraform-ibm-modules/scc-workload-protection/ibm"
# version = "latest" # Replace "latest" with a release version to lock into a specific release
name = "workload-protection"
region = var.region
resource_group_id = ibm_resource_group.group.id
resource_tags = var.tags
cloud_monitoring_instance_crn = module.cloud_monitoring.crn
scc_wp_service_plan = var.sysdig_plan
}
Currently it does not.
Metadata
Metadata
Assignees
Labels
No labels