github.com/terraform-linters/tflint@v0.51.2-0.20240520175844-3750771571b6/plugin/stub-generator/sources/customrulesettesting/main.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/terraform-linters/tflint-plugin-sdk/plugin"
     5  	"github.com/terraform-linters/tflint-plugin-sdk/tflint"
     6  	"github.com/terraform-linters/tflint/plugin/stub-generator/sources/customrulesettesting/custom"
     7  	"github.com/terraform-linters/tflint/plugin/stub-generator/sources/customrulesettesting/rules"
     8  )
     9  
    10  func main() {
    11  	plugin.Serve(&plugin.ServeOpts{
    12  		RuleSet: &custom.RuleSet{
    13  			BuiltinRuleSet: tflint.BuiltinRuleSet{
    14  				Name:    "customrulesettesting",
    15  				Version: "0.1.0",
    16  				Rules: []tflint.Rule{
    17  					rules.NewAwsInstanceExampleTypeRule(),
    18  				},
    19  			},
    20  		},
    21  	})
    22  }