Attribute max_evpn_routes_count and similar (four of 'em) are documented as "When null, Apstra is rendering no maximum"
Can these values truly be null?
parseRouteLimit() seems to be rendering types.Int64Value(-1) instead of types.Int64Null()
The data source seems to think this was important:
// -1 is a special case in the resource, not relevant
// to the data source. Set these to null instead.
edit: This may be because we need a way for practitioners to explicitly nullify the value. Setting the configuration to null won't necessarily generate a plan, but setting -1 will.
Attribute
max_evpn_routes_countand similar (four of 'em) are documented as "Whennull, Apstra is rendering no maximum"Can these values truly be
null?parseRouteLimit()seems to be renderingtypes.Int64Value(-1)instead oftypes.Int64Null()The data source seems to think this was important:
edit: This may be because we need a way for practitioners to explicitly nullify the value. Setting the configuration to
nullwon't necessarily generate a plan, but setting-1will.