S036

SchemasStandard

check for Schema with invalid ConflictsWith attribute references

The S036 analyzer reports cases of Schemas which include ConflictsWith and have invalid schema attribute references.

Note

This only verifies the syntax of attribute references. The Terraform Plugin SDK can unit test attribute references to verify the references against the full schema.

Examples

&schema.Schema{
    ConflictsWith: []string{"config_block_attr.nested_attr"},
}
&schema.Schema{
    ConflictsWith: []string{"config_block_attr.0.nested_attr"},
}

Ignoring reports

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

//lintignore:S036
&schema.Schema{
    ConflictsWith: []string{"config_block_attr.nested_attr"},
}

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