Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 735 Bytes

single-benchmark.md

File metadata and controls

40 lines (29 loc) · 735 Bytes

SingleAccount-CIS Benchmarks

Use-Case explanation

Simple single-account setu in order to get CIS Benchmark

Client Setup

  • single-account setup
  • pre-existing resources

Sysdig Secure For Cloud Features

  • A part of Compliance, only CIS Benchmarks

Suggested setup

terraform {
  required_providers {
    sysdig = {
      source  = "sysdiglabs/sysdig"
    }
  }
}

provider "sysdig" {
  sysdig_secure_url        = "<SYSDIG_SECURE_URL>"
  sysdig_secure_api_token  = "<SYSDIG_SECURE_API_TOKEN>"
}

provider "aws" {
  region = "<AWS_REGION>"
}

module "sysdig-sfc" {
  source = "sysdiglabs/secure-for-cloud/aws//module/services/cloud-bench"
  name    = "TEST-NAME-cloudbench"  # optional
}