Skip to content

Commit

Permalink
add initial_size to google_compute_node_group (#4750) (#413)
Browse files Browse the repository at this point in the history
Co-authored-by: Riley Karson <[email protected]>
Signed-off-by: Modular Magician <[email protected]>

Co-authored-by: Riley Karson <[email protected]>
  • Loading branch information
modular-magician and rileykarson authored May 5, 2021
1 parent 840a4db commit 4b4ab10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/gcp_compute_node_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def response_to_hash(module, response):
u'description': response.get(u'description'),
u'name': response.get(u'name'),
u'nodeTemplate': response.get(u'nodeTemplate'),
u'size': response.get(u'size'),
u'size': module.params.get('size'),
u'maintenancePolicy': response.get(u'maintenancePolicy'),
u'maintenanceWindow': NodeGroupMaintenancewindow(response.get(u'maintenanceWindow', {}), module).from_response(),
u'autoscalingPolicy': NodeGroupAutoscalingpolicy(response.get(u'autoscalingPolicy', {}), module).from_response(),
Expand Down

0 comments on commit 4b4ab10

Please sign in to comment.