You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@james64 Thank you for bringing this to our attention.
For now, we are going to document that only SimpleScaling is supported, but we will leave the variables (with default values) to leave room for future enhancements and to not break existing modules that set them.
We will accept a PR that adds support for the other scaling types if it includes examples of them in the examples/complete test.
Describe the Bug
Module has variables scale_up_policy_type and scale_down_policy_type. According to documentation they support all values allowed in autoscaling_policy tf resource namely
SimpleScaling
,StepScaling
andTargetTrackingScaling
. On the other hand implementation of scaling policies does not contain blocks step_adjustments and target_tracking_configuration which are necessary to useStepScaling
orTargetTrackingScaling
respectively. This means that effectively onlySimpleScaling
is available.Expected Behavior
Option A - support
SimpleScaling
scale_*_policy_type
and replace them with hardcodedSimpleScaling
Option B - full support for all three policies
The text was updated successfully, but these errors were encountered: