github.com/terraform-linters/tflint@v0.51.2-0.20240520175844-3750771571b6/plugin/stub-generator/sources/incompatiblehost/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  )
     7  
     8  func main() {
     9  	plugin.Serve(&plugin.ServeOpts{
    10  		RuleSet: &tflint.BuiltinRuleSet{
    11  			Name:       "incompatiblehost",
    12  			Version:    "0.1.0",
    13  			Constraint: ">= 1.0",
    14  		},
    15  	})
    16  }