R013

ResourcesStandard

check for map[string]*Resource that resource names contain at least one underscore

The R013 analyzer reports cases of resource names which do not include at least one underscore character (_). Resources should be named with the provider name and API resource name separated by an underscore to clarify where a resource is declared and configured.

Examples

map[string]*schema.Resource{
    "thing": /* ... */,
}
map[string]*schema.Resource{
    "example_thing": /* ... */,
}

Ignoring reports

Singular reports can be ignored by adding a //lintignore:R013 Go code comment at the end of the offending line or on the line immediately preceding, e.g.

//lintignore:R013
map[string]*schema.Resource{
    "thing": /* ... */,
}

This page is generated from passes/R013/README.md, which lives beside the analyzer.