Skip to content

Can we configure the Endpoint type when provisioning the workload protection instance? #220

@lionelmace

Description

@lionelmace

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions