github.com/terraform-linters/tflint@v0.51.2-0.20240520175844-3750771571b6/plugin/stub-generator/sources/customrulesettesting/custom/config.go (about) 1 package custom 2 3 type Config struct { 4 // From .tflint.hcl 5 DeepCheck bool `hclext:"deep_check,optional"` 6 Auth *Auth `hclext:"auth,block"` 7 8 // From provider config 9 Zone string 10 Annotation string 11 } 12 13 type Auth struct { 14 Token string `hclext:"token"` 15 }