Hello :wave: Does anyone have any suggestions on h...
# general
c
Hello 👋 Does anyone have any suggestions on how to successfully install cis-benchmarks helm chart into clusters using a Terraform module with a scheduled scan cadence? I've used this Terraform api as a reference but have issues with the deployment: https://registry.terraform.io/providers/rancher/rancher2/latest/docs/guides/apps_marketplace#rancher-cis-benchmark-1
Copy code
resource "rancher2_app_v2" "rancher-cis-benchmark" {  
  cluster_id = "<CLUSTER_ID>"
  name = "rancher-cis-benchmark"
  namespace = "cis-operator-system"
  repo_name = "rancher-charts"
  chart_name = "rancher-cis-benchmark"
  chart_version = "1.0.100"
}
Please note that I am aware you can manually install it using the rancher UI. The goal is to automate this.