github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/tests/manual_testing/demo/control_demo/mod.sp (about) 1 mod "m1" { 2 # hub metadata 3 title = upper("aws cis") 4 description = control.c1.description 5 color = "#FF9900" 6 icon = "/images/plugins/turbot/aws.svg" 7 labels = [ 8 "public cloud", 9 "aws"] 10 11 opengraph { 12 title = "Steampipe Mod for AWS CIS" 13 description = "CIS reports, queries, and actions for AWS. Open source CLI. No DB required." 14 } 15 // 16 // require { 17 // steampipe ">0.3.0" {} 18 // 19 // plugin "aws" {} 20 // plugin "gcp" ">1.0.0" {} 21 // 22 // # get by version tag 23 // mod "github.com/turbot/aws-core" "v1.123" {} 24 // 25 // # get by tag and alias 26 // mod "github.com/turbot/aws-core" "v2.345" { 27 // alias = "aws_core_v2" 28 // } 29 // 30 // # get by branch 31 // mod "github.com/turbot/aws-ec2-instance" "staging" {} 32 // 33 // # local mod 34 // mod "github.com/turbot/aws-ec2-elb" "file:~/my_path/aws_core"{} 35 // 36 // } 37 }