It is autoscaling from 0 to 3. Whenever we run terraform apply, terraform wants to change the replicas from the current value (0 for most of the time) to the max_replicas value (3). We explicitly have NOT set a value for replicas.
This will be fixed with version v5.4.0
We decided to remove the default entirely and instead make it mandatory to either set replicas or min and max replicas
See #108
Provider Version: 5.3.3
Observed Behaviour
We have created a node deployment like this:
It is autoscaling from 0 to 3. Whenever we run terraform apply, terraform wants to change the
replicas
from the current value (0 for most of the time) to themax_replicas
value (3). We explicitly have NOT set a value forreplicas
.Expected Behaviour
Since only
min_replicas
andmax_replicas
are defined, we expect terraform to ignore thereplicas
value.